Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 440 for persists (0.24 sec)

  1. guava/src/com/google/common/util/concurrent/Striped.java

       * with the specified number of permits.
       *
       * @param stripes the minimum number of stripes (semaphores) required
       * @param permits the number of permits in each semaphore
       * @return a new {@code Striped<Semaphore>}
       */
      public static Striped<Semaphore> semaphore(int stripes, int permits) {
        return custom(stripes, () -> new PaddedSemaphore(permits));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.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: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_disable_test.cc

      auto persistor = std::make_unique<XlaDeviceExecutablePersistor>(
          XlaDeviceExecutablePersistor::Config(), device_type);
      auto compiler_client = std::make_unique<XlaDeviceCompilerClient>(client);
      auto xla_device_compiler =
          new DeviceCompiler<xla::LocalExecutable, xla::LocalClient>(
              std::move(persistor), std::move(compiler_client));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

         * Publishes an event of global out-of-block modification of all source [KtModule]s. The event does not invalidate module state like
         * [publishGlobalSourceModuleStateModification], so some module structure-specific caches might persist.
         */
        @TestOnly
        public abstract fun publishGlobalSourceOutOfBlockModification()
    
        public companion object {
            public fun getInstance(project: Project): KotlinGlobalModificationService =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/kube/kclient/index_test.go

    	assertIndex(k1, pod1) // Original one must still persist
    	assertIndex(k2, pod2) // New one should be there, eventually
    
    	// Create another pod with the same SA; we ought to find multiple now.
    	c.Kube().CoreV1().Pods("ns").Create(context.Background(), pod3, metav1.CreateOptions{})
    	assertIndex(k1, pod1, pod3) // Original one must still persist
    	assertIndex(k2, pod2)       // New one should be there, eventually
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

                                               xla::LocalClient* local_client) {
      auto persistor = std::make_unique<XlaDeviceExecutablePersistor>(
          XlaDeviceExecutablePersistor::Config(), device_type);
      auto compiler_client =
          std::make_unique<XlaDeviceCompilerClient>(local_client);
      return new XlaDeviceCompiler(std::move(persistor),
                                   std::move(compiler_client));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

        // User scope is expected to be persisted in the global cache since 4.0.
        private GlobalScopedCacheBuilderFactory userScopeCacheScopeMarker() {
            return globalScopedcacheBuilderFactory;
        }
    
        // This method is effectively part of a cross Gradle version contract.
        // Workspace scope is expected to be persisted in the project cache dir since 4.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Striped.java

       * with the specified number of permits.
       *
       * @param stripes the minimum number of stripes (semaphores) required
       * @param permits the number of permits in each semaphore
       * @return a new {@code Striped<Semaphore>}
       */
      public static Striped<Semaphore> semaphore(int stripes, int permits) {
        return custom(stripes, () -> new PaddedSemaphore(permits));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_util.c

    // license that can be found in the LICENSE file.
    
    #include "libcgo.h"
    
    /* Stub for creating a new thread */
    void
    x_cgo_thread_start(ThreadStart *arg)
    {
    	ThreadStart *ts;
    
    	/* Make our own copy that can persist after we return. */
    	_cgo_tsan_acquire();
    	ts = malloc(sizeof *ts);
    	_cgo_tsan_release();
    	if(ts == nil) {
    		fprintf(stderr, "runtime/cgo: out of memory in thread_start\n");
    		abort();
    	}
    	*ts = *arg;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/scorecards-analysis.yml

          security-events: write
          id-token: write
    
        steps:
          - name: "Checkout code"
            uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
            with:
              persist-credentials: false
    
          - name: "Run analysis"
            uses: ossf/scorecard-action@15c10fcf1cf912bd22260bfec67569a359ab87da # v2.1.1
            with:
              results_file: results.sarif
              results_format: sarif
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 23:56:23 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top