Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 152 for CHANGED (0.4 sec)

  1. 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)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * Sets the project's class realm. <strong>Warning:</strong> This is an internal utility method that is only public
         * for technical reasons, it is not part of the public API. In particular, this method can be changed or deleted
         * without prior notice and must not be used by plugins.
         *
         * @param classRealm The class realm hosting the build extensions of this project, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For more information see <<empty_directories_file_tree>>.
    
    ==== Format of `JavaVersion` has changed for Java 9 and Java 10
    
    The string format of the `JavaVersion` has changed to match the official Java versioning.
    Starting from Java 9, the language version must not contain the `1.` prefix.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    		dsc.enqueueDaemonSet(ds)
    	}
    }
    
    // updateHistory figures out what DaemonSet(s) manage a ControllerRevision when the ControllerRevision
    // is updated and wake them up. If anything of the ControllerRevision has changed, we need to  awaken
    // both the old and new DaemonSets.
    func (dsc *DaemonSetsController) updateHistory(logger klog.Logger, old, cur interface{}) {
    	curHistory := cur.(*apps.ControllerRevision)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		var message string
    		var reason containerKillReason
    		restart := shouldRestartOnFailure(pod)
    		if _, _, changed := containerChanged(&container, containerStatus); changed {
    			message = fmt.Sprintf("Container %s definition changed", container.Name)
    			// Restart regardless of the restart policy because the container
    			// spec changed.
    			restart = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    The value for property 'implementation' is final and cannot be changed any further.
    The value for property 'languageVersion' is final and cannot be changed any further.
    The value for property 'vendor' is final and cannot be changed any further.
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    //
    //   - Root dependencies are updated to their selected versions.
    //
    // The "changed" return value reports whether the update changed the selected
    // version of any module that either provided a loaded package or may now
    // provide a package that was previously unresolved.
    func (ld *loader) updateRequirements(ctx context.Context) (changed bool, err error) {
    	rs := ld.requirements
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	tests := []struct {
    		name          string
    		oldCronJob    *batchv1.CronJob
    		newCronJob    *batchv1.CronJob
    		expectedDelay time.Duration
    	}{
    		{
    			name: "spec.template changed",
    			oldCronJob: &batchv1.CronJob{
    				Spec: batchv1.CronJobSpec{
    					JobTemplate: batchv1.JobTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{
    							Labels:      map[string]string{"a": "b"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top