Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,749 for outdated (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher_test.go

    	tcs := []struct {
    		config   string
    		webhook  string
    		mutated  bool
    		expected string
    	}{
    		{
    			config:   "test-config",
    			webhook:  "test-webhook",
    			mutated:  true,
    			expected: `{"configuration":"test-config","webhook":"test-webhook","mutated":true}`,
    		},
    		{
    			config:   "test-config",
    			webhook:  "test-webhook",
    			mutated:  false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

        @Override
        protected DefaultLockOptions options() {
            return DefaultLockOptions.mode(FileLockManager.LockMode.OnDemand)
        }
    
        def "a lock has been updated when never written to"() {
            given:
            def lock = createLock(Shared)
            def state = lock.state
            lock.close()
    
            when:
            lock = createLock(lockMode)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repair_test.go

    		t.Fatal(err)
    	}
    	if !ipregistry.updateCalled || ipregistry.updated == nil || ipregistry.updated.Range != cidr.String() || ipregistry.updated != ipregistry.item {
    		t.Errorf("unexpected ipregistry: %#v", ipregistry)
    	}
    	if !secondaryIPRegistry.updateCalled || secondaryIPRegistry.updated == nil || secondaryIPRegistry.updated.Range != secondaryCIDR.String() || secondaryIPRegistry.updated != secondaryIPRegistry.item {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

            file("a/build.gradle") << """
                myExtension.message = "updated message for :a"
            """
    
            withIsolatedProjects()
            def model5 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model5.size() == 2
            model5[0].message == "updated message for root"
            model5[1].message == "updated message for :a"
    
            and:
            fixture.assertStateUpdated {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/registry/rbac/clusterrole/policybased/storage_test.go

    					return
    				}
    				if fakeStorage.updated != 0 {
    					t.Errorf("unexpected calls to underlying storage.Update: %d", fakeStorage.updated)
    					return
    				}
    			}
    
    			if tc.expectAuthz != (authzCalled > 0) {
    				t.Fatalf("expected authz=%v, saw %d calls", tc.expectAuthz, authzCalled)
    			}
    		})
    	}
    }
    
    type fakeStorage struct {
    	updated int
    	created int
    	rest.StandardStorage
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 13:47:19 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            details.updated
            details.ruleDescriptors == [SELECTED_BY_RULE]
        }
    
        def "can specify custom selection reason"() {
            when:
            details.useTarget("org:bar:2.0", 'with custom reason')
    
            then:
            details.target instanceof ModuleComponentSelector
            details.target.toString() == 'org:bar:2.0'
            details.updated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/endpoint_test.go

    			require.Len(t, devices, 3)
    			require.Equal(t, devices[0].ID, updated[0].ID)
    			require.Equal(t, devices[1].ID, updated[1].ID)
    			require.Equal(t, devices[2].ID, updated[2].ID)
    			require.Equal(t, devices[0].Health, updated[0].Health)
    			require.Equal(t, devices[1].Health, updated[1].Health)
    			require.Equal(t, devices[2].Health, updated[2].Health)
    		}
    
    		callbackCount++
    		callbackChan <- callbackCount
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedGradlePropertiesIntegrationTest.kt

                setProperty("projectMutatedBuildProperty", "mutated")
                require(projectMutatedBuildProperty == "mutated")
    
                val projectMutatedUserHomeProperty: String by project
                require(projectMutatedUserHomeProperty == "user home value")
    
                setProperty("projectMutatedUserHomeProperty", "mutated")
                require(projectMutatedUserHomeProperty == "mutated")
            }
            """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3_test.go

    	"time"
    )
    
    func Test_atomicLastError(t *testing.T) {
    	aError := &atomicLastError{err: fmt.Errorf("initial error")}
    	// no timestamp is always updated
    	aError.Store(errors.New("updated error"), time.Time{})
    	err := aError.Load()
    	if err.Error() != "updated error" {
    		t.Fatalf("Expected: \"updated error\" got: %s", err.Error())
    	}
    	// update to current time
    	now := time.Now()
    	aError.Store(errors.New("now error"), now)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    type Manager interface {
    	// Update is used when the object has already been merged (non-apply
    	// use-case), and simply updates the managed fields in the output
    	// object.
    	//  * `liveObj` is not mutated by this function
    	//  * `newObj` may be mutated by this function
    	// Returns the new object with managedFields removed, and the object's new
    	// proposed managedFields separately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top