Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for map1 (0.1 sec)

  1. cmd/xl-storage-format-v2.go

    	ModTime            int64             `json:"MTime" msg:"MTime"`                              // Object version modified time
    	MetaSys            map[string][]byte `json:"MetaSys,omitempty" msg:"MetaSys,allownil"`       // Object version internal metadata
    	MetaUser           map[string]string `json:"MetaUsr,omitempty" msg:"MetaUsr,allownil"`       // Object version metadata set by user
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

          Map<K, Integer> map = Maps.newHashMap();
          for (K type : types) {
            collectTypes(type, map);
          }
          return sortKeysByValue(map, Ordering.natural().reverse());
        }
    
        /** Collects all types to map, and returns the total depth from T up to Object. */
        @CanIgnoreReturnValue
        private int collectTypes(K type, Map<? super K, Integer> map) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> The `GroovyObject` API is available
    <3> Invoke the `methodName` method, passing some parameters
    <4> Configure the `blockName` property, maps to a `Closure` taking method invocation
    <5> Invoke `another` method taking named arguments, maps to a Groovy named arguments `Map<String, ?>` taking method invocation
    
    [[using_a_groovy_script]]
    === Using a Groovy script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    )
    
    var (
    	// signalToNodeCondition maps a signal to the node condition to report if threshold is met.
    	signalToNodeCondition map[evictionapi.Signal]v1.NodeConditionType
    	// signalToResource maps a Signal to its associated Resource.
    	signalToResource map[evictionapi.Signal]v1.ResourceName
    )
    
    func init() {
    	// map eviction signals to node conditions
    	signalToNodeCondition = map[evictionapi.Signal]v1.NodeConditionType{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import java.io.InputStream;
    import java.io.PrintStream;
    import java.nio.charset.Charset;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.*;
    import java.util.Map.Entry;
    import java.util.function.Consumer;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Stream;
    
    import com.google.inject.AbstractModule;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	// +mapType=atomic
    	Selector map[string]string `json:"selector,omitempty" protobuf:"bytes,2,rep,name=selector"`
    
    	// label selector for pods that should match the replicas count. This is a serializated
    	// version of both map-based and more expressive set-based selectors. This is done to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      // for structural equality super-cheap -- we can just compare pointers.
      //
      // We intern predicates by maintaining a map from the content of a Predicate
      // to the only instance of said predicate we allow to exist in the
      // interned_and_or_instances_, interned_not_instances_ and
      // interned_symbol_instances_ fields.  These maps also double up as storage
      // for the owning pointers to predicate instances.
    
      using SignatureForAndOr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    			Name:      "pod",
    			Namespace: namespace,
    			Labels:    map[string]string{},
    		},
    		Spec: v1.PodSpec{NodeName: "node"},
    		Status: v1.PodStatus{
    			PodIP: "1.2.3.4",
    			Phase: v1.PodRunning,
    		},
    	}
    	setPodReady(basePod)
    	baseNode := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "node",
    			Labels: map[string]string{},
    		},
    	}
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // the merged result as long as either set marks it as used. This is used to
    // merge results from functions that have aliasing inputs, e.g., a while loop's
    // body and condition. The sets of keys of the two maps must be the same.
    llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> MergeArgResourceUseInfo(
        const llvm::SmallDenseMap<int64_t, ResourceArgUseInfo>& infos0,
        const llvm::SmallDenseMap<int64_t, ResourceArgUseInfo>& infos1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	s, _ := NewKubeControllerManagerOptions()
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fs.Parse(args)
    	// Sort GCIgnoredResources because it's built from a map, which means the
    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(s.GarbageCollectorController.GCIgnoredResources))
    
    	expected := &KubeControllerManagerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top