Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 290 for chanlen (0.15 sec)

  1. pkg/kubelet/status/status_manager_test.go

    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    	t.Logf("Should not update to mirror pod, because UID has changed.")
    	assert.Equal(t, m.syncBatch(true), 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    The following kinds of changes to the classpath will be ignored:
    
    * Changes to the path of jar or top level directories.
    * Changes to timestamps and the order of entries in Jars.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/testdata/SigVer.rsp.bz2

    (2 - R changed) Msg = 3f1b870323330de661aa Qx = 11a5a6f7166fe435c5cc Qy = 0c66d54768f5daf947cd R = 10f45ccf0b4de7d2af89 S = 1adaf876dc35310ac592 Result = F (1 - Message changed) Msg = 14ab6196185df9ed556c Qx = 0f3bd2590cbf620991d9 Qy = 0514871935c187e57d1a R = 083e6155dd97bf9ba7c6 S = 01fbfe61d75dc3fd814e Result = F (4 - Q changed) Msg = 22edb41beb81e6f9479f Qx = 13136c4e5dee983f7619 Qy = 11c830e1fd29ee4e10d7 R = 124b3bcdae17413de847 S = 03e0724d156c3fe5cb79 Result = F (1 - Message changed) Msg =...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 93.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    					reg, _ := state.f.getHome(v.ID).(*Register)
    					c := state.processValue(v, slots, reg)
    					changed = changed || c
    				}
    
    				if state.loggingLevel > 1 {
    					state.logf("Block %v done, locs:\n%v", b, state.stateString(state.currentState))
    				}
    
    				locs.relevant = locs.relevant || changed
    				if !changed {
    					locs.endState = startState
    				} else {
    					for _, id := range state.changedSlots.contents() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    }
    
    // prepare contains changes for objects in the API server.
    // Those changes are applied before running the steps. This can
    // be used to simulate concurrent changes by some other entities
    // like a resource driver.
    type prepare struct {
    	filter     change
    	prescore   change
    	reserve    change
    	unreserve  change
    	prebind    change
    	postbind   change
    	postfilter change
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            run ":app:resolveGreen", "-PuseOldDependencyVersion"
    
            then: // no changes, should be up-to-date
            assertTransformationsExecuted()
    
            when:
            run ":app:resolveGreen"
    
            then: // have seen these inputs before
            assertTransformationsExecuted()
        }
    
        def "transform with changed project file dependencies content or path are re-executed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if diffOptions.SetElementOrder && ((!diffOptions.IgnoreDeletions && len(deleteList) > 0) ||
    			(!diffOptions.IgnoreChangesAndAdditions && !reflect.DeepEqual(original, modified))) {
    			setOrderList = modified
    		}
    	}
    	return patchList, deleteList, setOrderList, err
    }
    
    // isOrderSame checks if the order in a list has changed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            result.assertTaskSkipped(":b:producer")
            outputContains("result = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
    
            when:
            configurationCacheRun(":resolve", "-DaContent=changed")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      public void testAddAllWithEmptyIterator() {
        List<String> alreadyThere = Lists.newArrayList("already", "there");
    
        boolean changed = Iterators.addAll(alreadyThere, Iterators.<String>emptyIterator());
        assertThat(alreadyThere).containsExactly("already", "there").inOrder();
        assertFalse(changed);
      }
    
      public void testAddAllToList() {
        List<String> alreadyThere = Lists.newArrayList("already", "there");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
Back to top