Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,868 for revoked (0.76 sec)

  1. CHANGELOG/CHANGELOG-1.7.md

    ## **Deprecations**
    
    ### Cluster provisioning scripts
    * cluster/ubuntu: Removed due to [deprecation](https://github.com/kubernetes/kubernetes/tree/master/cluster#cluster-configuration) and lack of maintenance. ([#44344](https://github.com/kubernetes/kubernetes/pull/44344), [@mikedanese](https://github.com/mikedanese))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // is cancelled or hits a deadline. condition will be invoked after the first interval if the
    // context is not cancelled first. The returned error will be from ctx.Err(), the condition's
    // err return value, or nil. If invoking condition takes longer than interval the next condition
    // will be invoked immediately. When using very short intervals, condition may be invoked multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

        /**
         * [onModification] is invoked in a write action before or after global module state modification.
         *
         * The module structure, source code, and binary content of all [KtModule]s in the project should be considered modified when this event
         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
        UPDATE,
    
        /**
         * The [KtModule] is being removed. Because this event is published before the removal, the [KtModule] can still be accessed to clear
         * caches. It should be removed from any caches managed by the subscriber to avoid stale or broken keys/values.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	// Backoff() call finishes, the first timer will NOT be drained and result in undetermined
    	// behavior.
    	Backoff() clock.Timer
    }
    
    // Deprecated: Will be removed when the legacy polling functions are removed.
    type exponentialBackoffManagerImpl struct {
    	backoff              *Backoff
    	backoffTimer         clock.Timer
    	lastBackoffStart     time.Time
    	initialBackoff       time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputsListener.java

        /**
         * Invoked when the code removes the system property. The property may not be present.
         *
         * @param key the name of the property, can be non-string
         * @param consumer the name of the class that is removing the property value
         */
        void systemPropertyRemoved(Object key, String consumer);
    
        /**
         * Invoked when all system properties are removed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleGradleBuildGroupedTaskFunctionalTest.groovy

        private static final String BYE_WORLD_MESSAGE = 'Bye world'
        private static final String AGGREGATE_TASK_NAME = 'all'
    
        def "can group task output from external build invoked executed by GradleBuild in same directory"() {
            given:
            def externalBuildScriptPath = 'other.gradle'
            buildFile << mainBuildScript("buildFile = '$externalBuildScriptPath'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate.mlir

    // RUN: tf-tfrt-opt -tfrt-deduplicate-functions-invoked-by-batch-function %s | FileCheck %s
    
    // This test verifies the function `compute_1` will be removed to deduplicate
    // the functions invoked by BatchFunction with the same shared_name and the
    // function `compute_2` will not be removed as the shared_name is different.
    
    // CHECK-LABEL: func private @batch_0
    // CHECK: f = @compute_0
    func.func private @batch_0(%arg0: tensor<?x?xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

        /**
         * [onModification] is invoked in a write action before or after global source module state modification.
         *
         * The module structure and source code of all source [KtModule]s in the project should be considered modified when this event is
         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    //
    // Deprecated: Will be removed when the legacy polling methods are removed.
    func runConditionWithCrashProtection(condition ConditionFunc) (bool, error) {
    	defer runtime.HandleCrash()
    	return condition()
    }
    
    // runConditionWithCrashProtectionWithContext runs a ConditionWithContextFunc
    // with crash protection.
    //
    // Deprecated: Will be removed when the legacy polling methods are removed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top