Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 440 for persists (0.16 sec)

  1. tensorflow/compiler/jit/xla_platform_info_test.cc

      EXPECT_EQ(xla_device_compiler->device_type(), metadata->jit_device_type());
      EXPECT_EQ(xla_device_compiler->client(), metadata->client());
      EXPECT_EQ(xla_device_compiler->persistor()->persistent_cache_directory(),
                "/tmp/xla_cache");
    }
    
    TEST_F(XlaPlatformInfoTest, BuildXlaDeviceCompilerNonXlaDevice) {
      device_setup_.AddDevicesAndSetUp({DEVICE_GPU});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	// before the object is persisted.  This method should not mutate the
    	// object.
    	Validate(ctx context.Context, obj runtime.Object) field.ErrorList
    	// WarningsOnCreate returns warnings to the client performing a create.
    	// WarningsOnCreate is invoked after default fields in the object have been filled in
    	// and after Validate has passed, before Canonicalize is called, and the object is persisted.
    	// This method must not mutate the object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  5. src/time/zoneinfo_android.go

    import (
    	"errors"
    	"syscall"
    )
    
    var platformZoneSources = []string{
    	"/system/usr/share/zoneinfo/tzdata",
    	"/data/misc/zoneinfo/current/tzdata",
    }
    
    func initLocal() {
    	// TODO(elias.naur): getprop persist.sys.timezone
    	localLoc = *UTC
    }
    
    func init() {
    	loadTzinfoFromTzdata = androidLoadTzinfoFromTzdata
    }
    
    var allowGorootSource = true
    
    func gorootZoneSource(goroot string) (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/role.yaml

      labels:
        app: istiod
        release: {{ .Release.Name }}
    rules:
    # permissions to verify the webhook is ready and rejecting
    # invalid config. We use --server-dry-run so no config is persisted.
    - apiGroups: ["networking.istio.io"]
      verbs: ["create"]
      resources: ["gateways"]
    
    # For storing CA secret
    - apiGroups: [""]
      resources: ["secrets"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // header for each unknown field that is dropped from the object, and
      // for each duplicate field that is encountered. The request will
      // still succeed if there are no other errors, and will only persist
      // the last of any duplicate fields. This is the default in v1.23+
      // - Strict: This will fail the request with a BadRequest error if
      // any unknown fields would be dropped from the object, or if any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // header for each unknown field that is dropped from the object, and
      // for each duplicate field that is encountered. The request will
      // still succeed if there are no other errors, and will only persist
      // the last of any duplicate fields. This is the default in v1.23+
      // - Strict: This will fail the request with a BadRequest error if
      // any unknown fields would be dropped from the object, or if any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

        private final DocumentationRegistry documentationRegistry;
        private final Permits pluginsBlockPermits;
    
        public PluginUseScriptBlockMetadataCompiler(DocumentationRegistry documentationRegistry, Permits pluginsBlockPermits) {
            this.documentationRegistry = documentationRegistry;
            this.pluginsBlockPermits = pluginsBlockPermits;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       * timeout, unit)} uninterruptibly.
       *
       * @since 28.0
       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      public static boolean tryAcquireUninterruptibly(
          Semaphore semaphore, int permits, Duration timeout) {
        return tryAcquireUninterruptibly(
            semaphore, permits, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top