HomeSort by relevance Sort by last modified time
    Searched refs:project_id (Results 1 - 21 of 21) sorted by null

  /external/grpc-grpc/tools/gcp/utils/
big_query_utils.py 38 def create_dataset(biq_query, project_id, dataset_id):
42 'projectId': project_id,
49 projectId=project_id, body=body)
62 def create_table(big_query, project_id, dataset_id, table_id, table_schema,
69 return create_table2(big_query, project_id, dataset_id, table_id, fields,
74 project_id,
89 return create_table2(big_query, project_id, dataset_id, table_id, fields,
94 project_id,
110 'projectId': project_id,
123 projectId=project_id, datasetId=dataset_id, body=body
    [all...]
  /external/python/google-api-python-client/samples/prediction/
prediction.py 25 $ python prediction.py "bucket/object" "model_id" "project_id"
60 argparser.add_argument('project_id',
90 result = papi.list(maxResults=10, project=flags.project_id).execute()
97 start = papi.insert(body=body, project=flags.project_id).execute()
104 status = papi.get(id=flags.model_id, project=flags.project_id).execute()
122 result = papi.analyze(id=flags.model_id, project=flags.project_id).execute()
131 body=body, id=flags.model_id, project=flags.project_id).execute()
137 result = papi.delete(id=flags.model_id, project=flags.project_id).execute()
  /external/python/google-api-python-client/samples/maps_engine/
maps_engine.py 28 $ python maps_engine.py [-p project_id] [-s shapefile]
57 argparser.add_argument("-p", "--project_id", help="optional GME Project ID")
77 def ListTables(service, project_id):
82 project_id: string, id of the GME project.
85 tables = service.tables().list(projectId=project_id).execute()
89 def UploadShapefile(service, project_id, shapefile_prefix):
94 project_id: string, id of the GME project.
108 "projectId": project_id,
158 if flags.project_id:
159 # ListTables(service, flags.project_id)
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_reader_ops.cc 34 Status GetTableAttrs(OpKernelConstruction* context, string* project_id,
38 TF_RETURN_IF_ERROR(context->GetAttr("project_id", project_id));
98 string project_id; local
105 GetTableAttrs(context, &project_id, &dataset_id, &table_id,
109 project_id, dataset_id, table_id, timestamp_millis,
129 string project_id; local
137 GetTableAttrs(context, &project_id, &dataset_id, &table_id,
141 project_id, dataset_id, table_id, timestamp_millis,
bigquery_table_accessor.h 65 static Status New(const string& project_id, const string& dataset_id,
106 static Status New(const string& project_id, const string& dataset_id,
117 const string& project_id, const string& dataset_id,
bigquery_table_accessor.cc 74 const string& project_id, const string& dataset_id, const string& table_id,
78 return New(project_id, dataset_id, table_id, timestamp_millis,
84 const string& project_id, const string& dataset_id, const string& table_id,
105 project_id, dataset_id, table_id, timestamp_millis, row_buffer_size,
113 const string& project_id, const string& dataset_id, const string& table_id,
118 : project_id_(project_id),
bigquery_table_accessor_test.cc 68 Status CreateTableAccessor(const string& project_id, const string& dataset_id,
74 project_id, dataset_id, table_id, timestamp_millis, row_buffer_size, "",
  /external/tensorflow/tensorflow/contrib/bigtable/kernels/test_kernels/
bigtable_test_client_op.cc 54 string project_id = client->project_id();
56 *ret = new BigtableClientResource(std::move(project_id),
bigtable_test_client.h 27 std::string const& project_id() const override { return project_id_; }
  /external/tensorflow/tensorflow/contrib/cloud/python/ops/
bigquery_reader_ops.py 43 reader = bigquery_reader_ops.BigQueryReader(project_id=PROJECT,
68 project_id,
80 project_id: GCP project ID.
110 self._project_id = project_id
119 project_id=self._project_id,
141 project_id=self._project_id,
bigquery_reader_ops_test.py 210 project_id=_PROJECT,
259 project_id=_PROJECT,
  /external/python/oauth2client/tests/contrib/
test_devshell.py 56 self.assertEqual(info_response.project_id, None)
62 project_id = 'project_id'
66 [user_email, project_id, access_token, expires_in])
69 self.assertEqual(info_response.project_id, project_id)
202 self.assertEqual(response.project_id, 'fooproj')
217 self.assertEqual('fooproj', creds.project_id)
228 self.assertEqual(None, creds.project_id)
236 self.assertEqual(None, creds.project_id)
    [all...]
  /external/python/oauth2client/oauth2client/contrib/
devshell.py 66 self.project_id = pbl[1] if pbl_len > 1 else None
135 def project_id(self): member in class:DevshellCredentials
136 return self.devshell_response.project_id
  /external/tensorflow/tensorflow/contrib/bigtable/kernels/
bigtable_lib.h 36 string project_id, string instance_id,
38 : project_id_(std::move(project_id)),
47 return strings::StrCat("BigtableClientResource(project_id: ", project_id_,
  /external/grpc-grpc/examples/ruby/pubsub/
pubsub_demo.rb 160 return "/topics/#{@args.project_id}/#{@args.topic_name}"
163 "/topics/#{@args.project_id}/#{ENV['USER']}-#{now_text}"
169 return "/subscriptions/#{@args.project_id}/#{@args.sub_name}"
172 "/subscriptions/#{@args.project_id}/#{ENV['USER']}-#{now_text}"
187 q = "cloud.googleapis.com/project in (/projects/#{@args.project_id})"
193 Args = Struct.new(:host, :port, :action, :project_id, :topic_name,
217 %w(project_id topic_name sub_name).each do |o|
  /external/tensorflow/tensorflow/contrib/bigtable/python/ops/
bigtable_api.py 55 project_id,
62 project_id: A string representing the GCP project id to connect to.
73 if not isinstance(project_id, str):
74 raise ValueError("`project_id` must be a string")
75 self._project_id = project_id
94 project_id, instance_id, connection_pool_size, max_receive_message_size)
  /external/syzkaller/vendor/google.golang.org/api/internal/
creds.go 66 ProjectID string `json:"project_id"`
  /external/autotest/site_utils/lxc/
lxc_functional_test.py 103 "project_id": "test_project",
  /external/autotest/site_utils/sponge_lib/
acts_job_info.py 145 def project_id(self): member in class:ACTSTaskInfo
  /external/python/apitools/samples/servicemanagement_sample/servicemanagement_v1/
servicemanagement_v1_messages.py 641 accepts the following forms: "project:<project_id>",
    [all...]
  /external/syzkaller/vendor/golang.org/x/oauth2/google/
google.go 115 ProjectID string `json:"project_id"`

Completed in 579 milliseconds