Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for NewValue (0.19 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

        }
    
        def rebuildsCacheWhenPropertyIsAdded() {
            given:
            def dir = createCacheDir()
            def properties = properties + [newProp: 'newValue']
            def cache = new DefaultPersistentDirectoryCache(dir, "<display-name>", properties, mode(FileLockManager.LockMode.Shared), initializationAction, cacheCleanup, lockManager, Mock(ExecutorFactory), buildOperationRunner)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                    data.set(key, value);
                }
    
                @Override
                public <T> boolean replace(@Nonnull Key<T> key, @Nullable T oldValue, @Nullable T newValue) {
                    return data.set(key, oldValue, newValue);
                }
    
                @Nullable
                @Override
                @SuppressWarnings("unchecked")
                public <T> T get(@Nonnull Key<T> key) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * thereafter.
         */
        private void maybeWarnOnChangingUsage(String methodName, boolean current, boolean newValue) {
            if (isInLegacyRole()) {
                return;
            }
    
            // Error will be thrown later. Don't emit a duplicate warning.
            if (!usageCanBeMutated && (current != newValue)) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    		errMaxDepth: true,
    	}}
    
    	targets := []struct {
    		CaseName
    		newValue func() any
    	}{{
    		CaseName: Name("unstructured"),
    		newValue: func() any {
    			var v any
    			return &v
    		},
    	}, {
    		CaseName: Name("typed named field"),
    		newValue: func() any {
    			v := struct {
    				A any `json:"a"`
    			}{}
    			return &v
    		},
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            }
    
            when:
            configurationCacheRun("-DCI=$newValue")
    
            then: 'undeclared inputs are treated as inputs'
            configurationCache.assertStateStored()
            noExceptionThrown()
    
            where:
            read                                                                        | defaultValue | newValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    			scope.err(err, w, req)
    			return
    		}
    
    		// transform fields
    		// TODO: DecodeParametersInto should do this.
    		if opts.FieldSelector != nil {
    			fn := func(label, value string) (newLabel, newValue string, err error) {
    				return scope.Convertor.ConvertFieldLabel(scope.Kind, label, value)
    			}
    			if opts.FieldSelector, err = opts.FieldSelector.Transform(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    			for _, atvs := range atvSet.Value {
    				for _, atv := range atvs {
    					specifiedExtensions[atv.Type.String()] = true
    				}
    			}
    
    			newValue := make([]pkix.AttributeTypeAndValue, 0, len(atvSet.Value[0])+len(extensions))
    			newValue = append(newValue, atvSet.Value[0]...)
    
    			for _, e := range extensions {
    				if specifiedExtensions[e.Id.String()] {
    					// Attributes already contained a value for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

                    }
                }
    
                @Override
                public void onChange(Object key, Object newValue) {
                    listener().systemPropertyChanged(key, newValue, consumer);
                }
    
                @Override
                public void onRemove(Object key) {
                    listener().systemPropertyRemoved(key, consumer);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            buildScript """
                task (copy, type:Copy) {
                   from ('src') {
                      def newValue = providers.systemProperty('new-value').present
                      if (newValue) {
                            $newValue
                      } else {
                            $oldValue
                      }
                   }
                   into 'dest'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TreeMultiset.java

        @CheckForNull
        public T get() {
          return value;
        }
    
        public void checkAndSet(@CheckForNull T expected, @CheckForNull T newValue) {
          if (value != expected) {
            throw new ConcurrentModificationException();
          }
          value = newValue;
        }
    
        void clear() {
          value = null;
        }
      }
    
      private static final class AvlNode<E extends @Nullable Object> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top