Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,868 for revoked (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    	// pod log directories without corresponding pods should be removed.
    	files := []string{"123", "456", "789", "012", "name_namespace_321", "name_namespace_654"}
    	podLogsDirectory := "/var/log/pods"
    	removed := []string{
    		filepath.Join(podLogsDirectory, "789"),
    		filepath.Join(podLogsDirectory, "012"),
    		filepath.Join(podLogsDirectory, "name_namespace_654"),
    	}
    	podStateProvider.removed["012"] = struct{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       *
       * <p>Cancellation does not propagate from the output future to a callable that has begun to
       * execute, but if the output future is cancelled before {@link Callable#call()} is invoked,
       * {@link Callable#call()} will not be invoked.
       */
      public <T extends @Nullable Object> ListenableFuture<T> submit(
          Callable<T> callable, Executor executor) {
        checkNotNull(callable);
        checkNotNull(executor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       *
       * <p>Cancellation does not propagate from the output future to a callable that has begun to
       * execute, but if the output future is cancelled before {@link Callable#call()} is invoked,
       * {@link Callable#call()} will not be invoked.
       */
      public <T extends @Nullable Object> ListenableFuture<T> submit(
          Callable<T> callable, Executor executor) {
        checkNotNull(callable);
        checkNotNull(executor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      // 2. Initialize all the rest of the functions
      TF_RETURN_IF_ERROR(InitializeAllFunctions(ctx, obj_graph, *this, revived));
    
      // 3a. Move over all non-function, non-resource objects
      revived->variables = std::move(variables);
      revived->assets = std::move(assets);
      revived->constants = std::move(constants);
      revived->signatures_map = std::move(signatures_map);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs generic deprecation message for specific thing"() {
            when:
            DeprecationLogger.deprecate("Something").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Something has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

     */
    public interface TestNGConfigurationListener {
        /**
         * Invoked whenever a configuration method succeeded.
         */
        void onConfigurationSuccess(ITestResult itr);
    
        /**
         * Invoked whenever a configuration method failed.
         */
        void onConfigurationFailure(ITestResult itr);
    
        /**
         * Invoked whenever a configuration method was skipped.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/DefaultFileChangeTest.groovy

            fileChange                                                              | message
            DefaultFileChange.removed("somePath", "test", FileType.RegularFile, "") | "has been removed"
            DefaultFileChange.removed("somePath", "test", FileType.Directory, "")   | "has been removed"
            DefaultFileChange.added("somePath", "test", FileType.RegularFile, "")   | "has been added"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. test/nilptr5_aix.go

    // license that can be found in the LICENSE file.
    
    // Test that nil checks are removed.
    // Optimization is enabled.
    
    package p
    
    func f5(p *float32, q *float64, r *float32, s *float64) float64 {
    	x := float64(*p) // ERROR "generated nil check"
    	y := *q          // ERROR "generated nil check"
    	*r = 7           // ERROR "removed nil check"
    	*s = 9           // ERROR "removed nil check"
    	return x + y
    }
    
    type T [29]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 806 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    func runKubeletFinalizeEnableClientCertRotationWrapped(c workflow.RunData) error {
    	if enableClientCertRotationRun {
    		return nil
    	}
    	klog.Warning("The phase 'experimental-cert-rotation' is deprecated and will be removed in a future release. " +
    		"Use 'enable-client-cert-rotation' instead")
    	return runKubeletFinalizeEnableClientCertRotation(c)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty collection.
         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
         * the actual value of this property is guaranteed to be present.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top