Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,868 for revoked (0.13 sec)

  1. pilot/pkg/xds/eds.go

    			continue
    		}
    
    		builder := endpoints.NewEndpointBuilder(clusterName, proxy, req.Push)
    		// if a service is not found, it means the cluster is removed
    		if !builder.ServiceFound() {
    			removed = append(removed, clusterName)
    			continue
    		}
    
    		// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    		if !features.EnableUnsafeAssertions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/RemovalCause.java

    import java.util.Map;
    import java.util.concurrent.ConcurrentMap;
    
    /**
     * The reason why a cached entry was removed.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum RemovalCause {
      /**
       * The entry was manually removed by the user. This can result from the user invoking {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

            public void afterFrames() {}
        };
    
        /**
         * Invoked after a failure header has been printed, and before any stack frames have been printed.
         */
        void beforeFrames();
    
        /**
         * Invoked before a given stack frame is printed.
         */
        void beforeFrame(StackTraceElement element, StackTraceRelevance relevance);
    
        /**
         * Invoked after all stack frames of a failure have been printed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The method `isDeferredConfigurable()` was removed from `ExtensionSchema`.
     * `IdeaPlugin.performPostEvaluationActions()` and `EclipsePlugin.performPostEvaluationActions()` have been removed.
     * `The `BroadcastingCollectionEventRegister.getAddAction()` method has been removed with no replacement.
     * The internal `org.gradle.util` package is no longer imported by default.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BaseDeprecations.groovy

        public static final String ABSTRACT_ARCHIVE_TASK_ARCHIVE_PATH_DEPRECATION = "The AbstractArchiveTask.archivePath property has been deprecated. " +
            "This is scheduled to be removed in Gradle 9.0. " +
            "Please use the archiveFile property instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/env_gomod_issue61455.txt

    # go env GOMOD should not trigger a toolchain download
    cd $GOPATH/mod
    go env GOMOD
    stdout mod[/\\]go.mod
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    # go env GOWORK should not trigger a toolchain download
    cd $GOPATH/work
    go env GOWORK
    stdout work[/\\]go.work
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    -- $GOPATH/mod/go.mod --
    module example.com
    
    go 1.700
    
    -- $GOPATH/work/go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 16:05:39 UTC 2024
    - 510 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                executer.expectDocumentedDeprecationWarning("The ResolvedConfiguration.getFirstLevelModuleDependencies(Spec) method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getFirstLevelModuleDependencies() instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#deprecate_filtered_configuration_file_and_filecollection_methods")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/constant_loading_test.cc

      }
    
      // Revival should succeed w/o errors
      std::unique_ptr<Constant> revived;
      TF_EXPECT_OK(internal::TensorProtoToConstant(context(), proto, &revived));
    
      // The revived tensorhandle should have the exact same dtype, shape, +
      // approx equivalent data to the original.
      ImmediateExecutionTensorHandle* handle = revived->handle();
      Status status;
      AbstractTensorPtr revived_tensor(handle->Resolve(&status));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    "Method com.example.Task.setFailOnError(boolean): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed")
                )
            }
        }
    
        @Test
        fun `should report an error if newly added method does not have @since`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

        void create(String name);
    
        /**
         * Defines an item with the given name and type T. The item is not created immediately, but is instead created as it is required.
         *
         * <p>The given action is invoked to configure the item when the item is required.
         *
         * @param name The name.
         * @param configAction An action that initialises the item. The action is executed when the item is required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top