Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 481 for changedTo (0.65 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            succeeds "b"
    
            then:
            result.assertTasksSkipped(":a", ":b")
    
            // Change intermediate output file, different length
            when:
            outputFileA.text = 'changed'
            succeeds "b"
    
            then:
            result.assertTasksNotSkipped(":a")
            result.assertTasksSkipped(":b")
    
            outputFileA.text == '[new content]'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Collections2.java

        public boolean removeAll(final Collection<?> collection) {
          boolean changed = false;
          Iterator<E> itr = unfiltered.iterator();
          while (itr.hasNext()) {
            E e = itr.next();
            if (predicate.apply(e) && collection.contains(e)) {
              itr.remove();
              changed = true;
            }
          }
          return changed;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/FilteredEntryMultimap.java

            if (collection.size() == entry.getValue().size()) {
              entryIterator.remove();
            } else {
              collection.clear();
            }
            changed = true;
          }
        }
        return changed;
      }
    
      @WeakOuter
      class AsMap extends ViewCachingAbstractMap<K, Collection<V>> {
        @Override
        public boolean containsKey(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/strategy_test.go

    			old := tc.oldSvc.DeepCopy()
    
    			// to test against user using IPFamily not set on cluster
    			dropServiceDisabledFields(tc.svc, tc.oldSvc)
    
    			// old node should never be changed
    			if !reflect.DeepEqual(tc.oldSvc, old) {
    				t.Errorf("%v: old svc changed: %v", tc.name, cmp.Diff(tc.oldSvc, old))
    			}
    
    			if !reflect.DeepEqual(tc.svc, tc.compareSvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cfg/cfg.go

    // and reports whether it differs from the default value.
    func EnvOrAndChanged(name, def string) (v string, changed bool) {
    	val := Getenv(name)
    	if val != "" {
    		v = val
    		if g, ok := envCache.goroot[name]; ok {
    			changed = val != g
    		} else {
    			changed = val != def
    		}
    		return v, changed
    	}
    	return def, false
    }
    
    var SumdbDir = gopathDir("pkg/sumdb")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

              continue outer;
            }
    
            long newValue = oldValue + delta;
            if (atomic.compareAndSet(oldValue, newValue)) {
              return newValue;
            }
            // value changed
          }
        }
      }
    
      /**
       * Increments by one the value currently associated with {@code key}, and returns the old value.
       */
      @CanIgnoreReturnValue
      public long getAndIncrement(K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/graph_builder.go

    		// handle changes in ownerReferences
    		added, removed, changed := referencesDiffs(existingNode.owners, accessor.GetOwnerReferences())
    		if len(added) != 0 || len(removed) != 0 || len(changed) != 0 {
    			// check if the changed dependency graph unblock owners that are
    			// waiting for the deletion of their dependents.
    			gb.addUnblockedOwnersToDeleteQueue(logger, removed, changed)
    			// update the node itself
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            where:
            mergeRun     | typeHierachyChange | barContentOnChange                   | expectedFinalMergeAnalysisOutputs
            "re-run"     | "is changed"       | "class Bar extends Foo {}"           | 2
            "not re-run" | "is not changed"   | "class Bar { public void bar() {} }" | 1
        }
    
        def "project dependency analysis is #analysisRun if classes are #classChangeDescription and recompiled"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/FilteredEntryMultimap.java

            if (collection.size() == entry.getValue().size()) {
              entryIterator.remove();
            } else {
              collection.clear();
            }
            changed = true;
          }
        }
        return changed;
      }
    
      @WeakOuter
      class AsMap extends ViewCachingAbstractMap<K, Collection<V>> {
        @Override
        public boolean containsKey(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

                if (details.runsTasks) {
                    "Calculating task graph as configuration cache cannot be reused because $reason has changed."
                } else {
                    "Creating tooling model as configuration cache cannot be reused because $reason has changed."
                }
            }
    
            def found = messages.any { message -> spec.output.contains(message) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top