Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for keyA (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            }
    
            public void put(K key, V value) {
                Preconditions.checkNotNull(key, NULL_KEY_FORBIDDEN_MESSAGE);
                Preconditions.checkNotNull(value, NULL_VALUE_FORBIDDEN_MESSAGE);
                addCollector(new SingleEntry<>(key, value));
            }
    
            public void put(K key, Provider<? extends V> providerOfValue) {
                Preconditions.checkNotNull(key, NULL_KEY_FORBIDDEN_MESSAGE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        public abstract val partiallyAppliedSymbol: KaPartiallyAppliedSymbol<S, C>
    
        /**
         * This map returns inferred type arguments. If the type placeholders was used, actual inferred type will be used as a value.
         * Keys for this map is from the set [partiallyAppliedSymbol].signature.typeParameters.
         * In case of resolution or inference error could return empty map.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    func (cgc *containerGC) enforceMaxContainersPerEvictUnit(ctx context.Context, evictUnits containersByEvictUnit, MaxContainers int) {
    	for key := range evictUnits {
    		toRemove := len(evictUnits[key]) - MaxContainers
    
    		if toRemove > 0 {
    			evictUnits[key] = cgc.removeOldestN(ctx, evictUnits[key], toRemove)
    		}
    	}
    }
    
    // removeOldestN removes the oldest toRemove containers and returns the resulting slice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    )
    
    func init() {
    	runtime.Must(utilfeature.DefaultMutableFeatureGate.Add(defaultKubernetesFeatureGates))
    }
    
    // defaultKubernetesFeatureGates consists of all known Kubernetes-specific feature keys.
    // To add a new feature, define a key for it above and add it here. The features will be
    // available throughout Kubernetes binaries.
    var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cmd/utils.go

    // If it is passed ["aaaa", "bbbb"], it returns ["aaaa", "{aaaa:.*}", "bbbb", "{bbbb:.*}"]
    func restQueries(keys ...string) []string {
    	var accumulator []string
    	for _, key := range keys {
    		accumulator = append(accumulator, key, "{"+key+":.*}")
    	}
    	return accumulator
    }
    
    // Suffix returns the longest common suffix of the provided strings
    func lcpSuffix(strs []string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. cmd/metacache-server-pool.go

    			return entries, io.EOF
    		}
    	}
    
    	// With max keys of zero we have reached eof, return right here.
    	if o.Limit == 0 {
    		return entries, io.EOF
    	}
    
    	// For delimiter and prefix as '/' we do not list anything at all
    	// along // with the prefix. On a flat namespace with 'prefix'
    	// as '/' we don't have any entries, since all the keys are
    	// of form 'keyName/...'
    	if strings.HasPrefix(o.Prefix, SlashSeparator) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. cmd/sftp-server-driver.go

    			Recursive: false,
    		}) {
    			if object.Err != nil {
    				return nil, object.Err
    			}
    
    			if object.Key == prefix {
    				continue
    			}
    
    			isDir := strings.HasSuffix(object.Key, SlashSeparator)
    			files = append(files, &minioFileInfo{
    				p:     pathClean(strings.TrimPrefix(object.Key, prefix)),
    				info:  object,
    				isDir: isDir,
    			})
    		}
    
    		return listerAt(files), nil
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    // The header is a sequence of possibly continued Key: Value lines
    // ending in a blank line.
    // The returned map m maps [CanonicalMIMEHeaderKey](key) to a
    // sequence of values in the same order encountered in the input.
    //
    // For example, consider this input:
    //
    //	My-Key: Value 1
    //	Long-Key: Even
    //	       Longer Value
    //	My-Key: Value 2
    //
    // Given that input, ReadMIMEHeader returns the map:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                fqid == 'validation:property-validation:nested-map-unsupported-key-type'
                contextualLabel == "Type 'MyTask' property 'mapWithUnsupportedKey' where key of nested map is of type 'java.lang.Boolean'"
                details == 'Key of nested map must be one of the following types: \'Enum\', \'Integer\', \'String\''
                solutions == [ 'Change type of key to one of the following types: \'Enum\', \'Integer\', \'String\'' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    				return false
    			}
    			key = map_.key
    			return true
    		}) {
    			return
    		}
    
    		*x = *args[1] // key
    		check.assignment(x, key, "argument to delete")
    		if x.mode == invalid {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, map_, key))
    		}
    
    	case _Imag, _Real:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top