Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Gcs (0.02 sec)

  1. cmd/warm-backend-gcs.go

    		return nil, gcsToObjectError(err, gcs.Bucket, key)
    	}
    	return r, nil
    }
    
    func (gcs *warmBackendGCS) Remove(ctx context.Context, key string, rv remoteVersionID) error {
    	err := gcs.client.Bucket(gcs.Bucket).Object(gcs.getDest(key)).Delete(ctx)
    	return gcsToObjectError(err, gcs.Bucket, key)
    }
    
    func (gcs *warmBackendGCS) InUse(ctx context.Context) (bool, error) {
    	it := gcs.client.Bucket(gcs.Bucket).Objects(ctx, &storage.Query{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/build.gradle.kts

    }
    
    description = "Implementation for interacting with Google Cloud Storage (GCS) repositories"
    
    errorprone {
        disabledChecks.addAll(
            "StringCaseLocaleUsage", // 1 occurrences
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":resources"))
    
        api(libs.gcs)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

    # Experimental gcs filesystem plugin.
    load("//tensorflow:tensorflow.bzl", "get_win_copts", "tf_cc_shared_object", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for GCS environments
    tf_cc_shared_object(
        name = "gcs_filesystem",
        framework_so = [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                putRequest.execute();
            } catch (IOException e) {
                throw ResourceExceptions.putFailed(destination, e);
            }
        }
    
        @Nullable
        public StorageObject getResource(URI uri) throws ResourceException {
            LOGGER.debug("Attempting to get gcs resource: [{}]", uri.toString());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/software/resources-gcs/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.internal.resource.transport.gcp.gcs.GcsResourcesServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 68 bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    				},
    				"subprojects":[
    					"scala",
    					"plugins-java-base",
    					"build-cache",
    					"messaging",
    					"war",
    					"java-platform",
    					"build-profile",
    					"resources-gcs",
    					"ear",
    					"plugins-distribution",
    					"build-cache-local"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. ci/official/upload.sh

    # limitations under the License.
    # ==============================================================================
    # This script uploads all staged artifacts from all previous builds in the same
    # job chain to GCS and PyPI.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only, then fetch the version numbers
    # for choosing the final directory name. This adds "-devYYYYMMDD" to the end of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/distributions-basics/build.gradle.kts

        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":resources-sftp"))
        pluginsRuntimeOnly(project(":resources-s3"))
        pluginsRuntimeOnly(project(":resources-gcs"))
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":build-cache-http"))
    
        pluginsRuntimeOnly(project(":tooling-api-builders"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:05:59 UTC 2024
    - 945 bytes
    - Viewed (0)
  9. cmd/warm-backend.go

    	switch tier.Type {
    	case madmin.S3:
    		d, err = newWarmBackendS3(*tier.S3, tier.Name)
    	case madmin.Azure:
    		d, err = newWarmBackendAzure(*tier.Azure, tier.Name)
    	case madmin.GCS:
    		d, err = newWarmBackendGCS(*tier.GCS, tier.Name)
    	case madmin.MinIO:
    		d, err = newWarmBackendMinIO(*tier.MinIO, tier.Name)
    	default:
    		return nil, errTierTypeUnsupported
    	}
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. ci/official/envs/versions_upload

    # ==============================================================================
    # Release jobs are very basic. They don't use any caching or RBE,
    # but they do upload logs to resultstore.
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top