Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for map1 (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            String consumerBuildPath
            String consumerProjectPath
            Map<String, String> componentId
            Map<String, String> sourceAttributes
            Map<String, String> targetAttributes
            List<Map<String, String>> capabilities
            String artifactName
            Map<String, String> dependenciesConfigurationIdentity
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    		cloudProviderType              cloudProviderType
    		nodeAddresses                  []v1.NodeAddress
    		expectedAddresses              []v1.NodeAddress
    		existingAnnotations            map[string]string
    		expectedAnnotations            map[string]string
    		shouldError                    bool
    		shouldSetNodeAddressBeforeTest bool
    	}{
    		{
    			name:   "A single InternalIP",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				IgnoredNodes: sets.New[string](),
    				TopologyPairToPodCounts: map[topologyPair]*int64{
    					{"planet", "mars"}: ptr.To[int64](0),
    				},
    				TopologyNormalizingWeight: []float64{topologyNormalizingWeight(1)},
    			},
    		},
    		{
    			name: "NodeAffinityPolicy honored with labelSelectors",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				NodeSelector(map[string]string{"foo": ""}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // maps; however, since arenas are large, on many architectures, the
    // arena map consists of a single, large L2 map.
    //
    // The arena map covers the entire possible address space, allowing
    // the Go heap to use any part of the address space. The allocator
    // attempts to keep arenas contiguous so that large spans (and hence
    // large objects) can cross arenas.
    
    package runtime
    
    import (
    	"internal/goarch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    	a := tenRunes('a')
    	// 1.  Grow. This triggers two reallocations in Map.
    	maxRune := func(rune) rune { return unicode.MaxRune }
    	m := Map(maxRune, a)
    	expect := tenRunes(unicode.MaxRune)
    	if m != expect {
    		t.Errorf("growing: expected %q got %q", expect, m)
    	}
    
    	// 2. Shrink
    	minRune := func(rune) rune { return 'a' }
    	m = Map(minRune, tenRunes(unicode.MaxRune))
    	expect = a
    	if m != expect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func containsCountsLabels(prof *profile.Profile, countLabels map[int64]map[string]string) bool {
    	m := make(map[int64]int)
    	type nkey struct {
    		count    int64
    		key, val string
    	}
    	n := make(map[nkey]int)
    	for c, kv := range countLabels {
    		m[c]++
    		for k, v := range kv {
    			n[nkey{
    				count: c,
    				key:   k,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    		totalPriority += int64(f.scorePluginWeight[e.Name]) * framework.MaxNodeScore
    	}
    	return nil
    }
    
    type orderedSet struct {
    	set         map[string]int
    	list        []string
    	deletionCnt int
    }
    
    func newOrderedSet() *orderedSet {
    	return &orderedSet{set: make(map[string]int)}
    }
    
    func (os *orderedSet) insert(s string) {
    	if os.has(s) {
    		return
    	}
    	os.set[s] = len(os.list)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    type heapArena struct {
    	_ sys.NotInHeap
    
    	// spans maps from virtual address page ID within this arena to *mspan.
    	// For allocated spans, their pages map to the span itself.
    	// For free spans, only the lowest and highest pages map to the span itself.
    	// Internal pages map to an arbitrary span.
    	// For pages that have never been allocated, spans entries are nil.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. pkg/volume/testing/testing.go

    	}
    	volume := &FakeVolume{
    		WaitForAttachHook: plugin.WaitForAttachHook,
    		UnmountDeviceHook: plugin.UnmountDeviceHook,
    	}
    	volume.VolumesAttached = make(map[string]sets.Set[string])
    	volume.DeviceMountState = make(map[string]string)
    	volume.VolumeMountState = make(map[string]string)
    	if list != nil {
    		*list = append(*list, volume)
    	}
    	return volume
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // takes in an expression.
    type operator struct {
    	name string
    	args int
    	prec precedence
    }
    
    // The operators map maps the mangled operator names to information
    // about them.
    var operators = map[string]operator{
    	"aN": {"&=", 2, precAssign},
    	"aS": {"=", 2, precAssign},
    	"aa": {"&&", 2, precLogicalAnd},
    	"ad": {"&", 1, precUnary},
    	"an": {"&", 2, precAnd},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top