Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for Region (0.27 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    							NumPDBViolations: 1,
    						},
    					},
    				},
    			},
    			expectedNumFilterCalled: []int32{8},
    		},
    	}
    
    	labelKeys := []string{"hostname", "zone", "region"}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			nodes := make([]*v1.Node, len(tt.nodeNames))
    			fakeFilterRCMap := make(map[string]framework.Code, len(tt.nodeNames))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	printlock()
    	print("runtime: pointer ", hex(p))
    	if s != nil {
    		state := s.state.get()
    		if state != mSpanInUse {
    			print(" to unallocated span")
    		} else {
    			print(" to unused region of span")
    		}
    		print(" span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", state)
    	}
    	print("\n")
    	if refBase != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    	node.Labels["kubernetes.io/hostname"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/zone"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/region"] = value
    	node.Labels["topology.kubernetes.io/zone"] = value
    	node.Labels["topology.kubernetes.io/region"] = value
    	node.Labels["beta.kubernetes.io/instance-type"] = value
    	node.Labels["node.kubernetes.io/instance-type"] = value
    	node.Labels["beta.kubernetes.io/os"] = value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. cmd/iam.go

    	globalServerConfigMu.RLock()
    	s := globalServerConfig
    	globalServerConfigMu.RUnlock()
    
    	openidConfig, err := openid.LookupConfig(s,
    		NewHTTPTransport(), xhttp.DrainBody, globalSite.Region())
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to initialize OpenID: %w", err), logger.WarningKind)
    	}
    
    	// Initialize if LDAP is enabled
    	ldapConfig, err := xldap.Lookup(s, globalRootCAs)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            failure.assertHasDescription("Execution failed for task ':copy'.")
        }
    
        // region duplicates in compressed files
        def "encountering duplicates in a zipTree vs an unzipped dir with DuplicateStrategy.FAIL should give a clear error"() {
            given: "a directory with a file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    		for j := 0; j < nb; j++ {
    			nodes = append(nodes, &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: fmt.Sprintf("node-%d", i),
    					Labels: map[string]string{
    						v1.LabelTopologyRegion: fmt.Sprintf("region-%d", zone),
    						v1.LabelTopologyZone:   fmt.Sprintf("zone-%d", zone),
    					},
    				},
    			})
    			i++
    		}
    	}
    
    	var cache *cacheImpl
    	var snapshot *Snapshot
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * comments.
         */
    
        @Weak final MapMakerInternalMap<K, V, E, S> map;
    
        /**
         * The number of live elements in this segment's region. This does not include unset elements
         * which are awaiting cleanup.
         */
        volatile int count;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	for v.Op == OpOffPtr || v.Op == OpAddPtr {
    		v = v.Args[0]
    	}
    	return v.Op == OpSP || v.Op == OpLocalAddr
    }
    
    // disjoint reports whether the memory region specified by [p1:p1+n1)
    // does not overlap with [p2:p2+n2).
    // A return value of false does not imply the regions overlap.
    func disjoint(p1 *Value, n1 int64, p2 *Value, n2 int64) bool {
    	if n1 == 0 || n2 == 0 {
    		return true
    	}
    	if p1 == p2 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top