Lines Matching full:name
23 config_files = [temp_file.name]
35 def get_project_id(self, name, namespace=None): argument
37 search project ID by name
39 :param name: project name
40 :param namespace: namespace to match when we have multiple project with same name
43 projects = self.gitlab_inst.projects.list(search=name)
52 if project.name == name:
73 with zipfile.ZipFile(temp_file.name, 'r') as archive_file:
135 Get Job ID from job name of specific pipeline
137 :param job_name: job name
139 …:param job_status: status of job. One pipeline could have multiple jobs with same name after retry.
149 match = self.JOB_NAME_PATTERN.match(job.name)
160 :param ref: commit or branch name
163 :return: root path name of archive file
177 … print('archive size: {:.03f}MB'.format(float(os.path.getsize(temp_file.name)) / (1024 * 1024)))
179 with tarfile.open(temp_file.name, 'r') as archive_file: