Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 153 for NewValue (0.12 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

                locationsWrittenByCurrentBuild.updateAndGet(currentValue -> {
                    FileHierarchySet newValue = currentValue;
                    for (String location : locations) {
                        newValue = newValue.plus(location);
                    }
                    return newValue;
                });
            }
        }
    
        public boolean shouldWatchLocation(String location) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            if (useSuper || fromInsideClass) {
                adaptee.setProperty(sender, object, name, newValue, useSuper, fromInsideClass);
            } else {
                invokeIntercepted(object, SET_PROPERTY, name, new Object[]{newValue}, () -> {
                    adaptee.setProperty(sender, object, name, newValue, useSuper, fromInsideClass);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

            return dynamicLookupRoutine.property(dynamicObject, property);
        }
    
        @Override
        public void setProperty(String property, Object newValue) {
            dynamicLookupRoutine.setProperty(dynamicObject, property, newValue);
        }
    
        public Map<String, ?> getProperties() {
            return dynamicLookupRoutine.getProperties(dynamicObject);
        }
    
        public boolean hasProperty(String property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. pkg/api/testing/conversion.go

    			}
    			if newLabel != expectedLabel {
    				t.Errorf("kind=%s label=%s: got unexpected label name (%q != %q)", kind, label, newLabel, expectedLabel)
    			}
    			if newValue != value {
    				t.Errorf("kind=%s label=%s: got unexpected new value (%q != %q)", kind, label, newValue, value)
    			}
    		}
    	}
    
    	for _, label := range badFieldLabels {
    		_, _, err := legacyscheme.Scheme.ConvertFieldLabel(gvk, label, "value")
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *
       * @param i the index
       * @param newValue the new value
       */
      public final void set(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.set(i, next);
      }
    
      /**
       * Eventually sets the element at position {@code i} to the given value.
       *
       * @param i the index
       * @param newValue the new value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/BasicCallInterceptionTestInterceptorsDeclaration.java

        public static void intercept_testString(
            @ParameterKind.Receiver InterceptorTestReceiver self,
            String newValue,
            @ParameterKind.CallerClassName String consumer
        ) {
            self.intercepted = "setTestString(String)";
            self.setTestString(newValue);
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertyGetter
        public static boolean intercept_testFlag(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 08:15:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/DefaultConventionTest.groovy

        }
    
        @Test void canSetConventionObjectProperties() {
            convention.extensionsAsDynamicObject.b = 'newvalue'
            assertEquals('newvalue', convention1.b)
        }
    
        @Test void canSetPropertiesWithAmbiguity() {
            convention.extensionsAsDynamicObject.a = 'newvalue'
            assertEquals('newvalue', convention1.a)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      /**
       * Associates {@code newValue} with {@code key} in this map, and returns the value previously
       * associated with {@code key}, or zero if there was no such value.
       */
      @CanIgnoreReturnValue
      public long put(K key, long newValue) {
        return getAndUpdate(key, x -> newValue);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileBackedObjectHolder.java

        }
    
        @Override
        public T get() {
            return fileAccess.readFile((Supplier<T>) this::deserialize);
        }
    
        @Override
        public void set(final T newValue) {
            fileAccess.writeFile(() -> serialize(newValue));
        }
    
        @Override
        public T update(final UpdateAction<T> updateAction) {
            class Updater implements Runnable {
                private final UpdateAction<T> updateAction;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/ConfigureDelegate.java

            }
        }
    
        @Override
        public void setProperty(String property, Object newValue) {
            DynamicInvokeResult result = _delegate.trySetProperty(property, newValue);
            if (result.isFound()) {
                return;
            }
    
            result = _owner.trySetProperty(property, newValue);
            if (result.isFound()) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top