Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,868 for revoked (0.14 sec)

  1. pkg/registry/apps/deployment/strategy.go

    	// to prevent unintentionally breaking users who may rely on the old behavior.
    	// TODO(#50791): after apps/v1beta1 and extensions/v1beta1 are removed,
    	// move selector immutability check inside ValidateDeploymentUpdate().
    	if requestInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                ),
                equalTo("init script 'removed.init.gradle.kts' has been removed")
            )
        }
    
        @Test
        fun `removed init scripts are reported`() {
            assertThat(
                invalidationReasonForInitScriptsChange(
                    from = listOf(
                        File("init.gradle.kts") to TestHashCodes.hashCodeFrom(1),
                        File("removed.init.gradle.kts") to TestHashCodes.hashCodeFrom(2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    			initialObjects: []runtime.Object{
    				withPVC(defaultPVCName, pod()),
    			},
    			updatedPVC:      deleted(withProtectionFinalizer(pvc())),
    			expectedActions: []clienttesting.Action{},
    		},
    		{
    			name: "deleted PVC with finalizer + pod with unrelated PVC and EmptyDir exists -> finalizer is removed",
    			initialObjects: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            projectAInRepo2.artifact.expectGet()
    
            then:
            executer.expectDocumentedDeprecationWarning("Declaring client module dependencies has been deprecated. This is scheduled to be removed in Gradle 9.0. Please use component metadata rules instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#declaring_client_module_dependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/internal/trace/batchcursor_test.go

    	// Remove from the head, and make sure the result is sorted.
    	l := len(heap)
    	var removed []*batchCursor
    	for i := 0; i < l; i++ {
    		removed = append(removed, heap[0])
    		heap = heapRemove(heap, 0)
    		checkHeap(t, heap)
    	}
    	if !slices.IsSortedFunc(removed, (*batchCursor).compare) {
    		t.Fatalf("heap elements not removed in sorted order, got: %s", heapDebugString(removed))
    	}
    }
    
    func makeBatchCursor(v int64) *batchCursor {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

            then:
            executesIncrementally("""
                ext.removed = ['b']
                ext.added = ['first', 'second', 'third']
            """)
    
            when:
            withProjectConfig("b") {
                names = ["first", "second"]
                outputFileContent = "different"
            }
            then:
            executesIncrementally("""
                ext.removed = ['third']
                ext.modified = ['first', 'second']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    type resourceExpirationEvaluator struct {
    	currentMajor int
    	currentMinor int
    	isAlpha      bool
    	// This is usually set for testing for which tests need to be removed.  This prevent insta-failing CI.
    	// Set KUBE_APISERVER_STRICT_REMOVED_API_HANDLING_IN_ALPHA to see what will be removed when we tag beta
    	strictRemovedHandlingInAlpha bool
    	// This is usually set by a cluster-admin looking for a short-term escape hatch after something bad happened.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterNodeChange},
    	}
    }
    
    // isSchedulableAfterNodeChange is invoked whenever a node changed. It checks whether
    // that change made a previously unschedulable pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controlplane/controller/crdregistration/crdregistration_controller_test.go

    			}
    			if !reflect.DeepEqual(test.expectedRemoved, registration.removed) {
    				t.Errorf("%s expected %v, got %v", test.name, test.expectedRemoved, registration.removed)
    			}
    		})
    	}
    }
    
    type fakeAPIServiceRegistration struct {
    	added   []*apiregistration.APIService
    	removed []string
    }
    
    func (a *fakeAPIServiceRegistration) AddAPIServiceToSync(in *apiregistration.APIService) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top