Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 153 for NewValue (0.18 sec)

  1. guava/src/com/google/common/collect/RegularImmutableMap.java

       *     flooding attack
       */
      @CanIgnoreReturnValue
      @CheckForNull
      static <K, V> ImmutableMapEntry<K, V> checkNoConflictInKeyBucket(
          Object key,
          Object newValue,
          @CheckForNull ImmutableMapEntry<K, V> keyBucketHead,
          boolean throwIfDuplicateKeys)
          throws BucketOverflowException {
        int bucketSize = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/cel/types.go

    	return rt.typeAdapter.NativeToValue(val)
    }
    
    func (rt *DeclTypeProvider) NewValue(typeName string, fields map[string]ref.Val) ref.Val {
    	// TODO: implement for OpenAPI types to enable CEL object instantiation, which is needed
    	// for mutating admission.
    	return rt.typeProvider.NewValue(typeName, fields)
    }
    
    // TypeNames returns the list of type names declared within the DeclTypeProvider object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. 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)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

     ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    			scope.err(err, w, req)
    			return
    		}
    
    		// transform fields
    		// TODO: DecodeParametersInto should do this.
    		if listOptions.FieldSelector != nil {
    			fn := func(label, value string) (newLabel, newValue string, err error) {
    				return scope.Convertor.ConvertFieldLabel(scope.Kind, label, value)
    			}
    			if listOptions.FieldSelector, err = listOptions.FieldSelector.Transform(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top