Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 190 for too (0.08 sec)

  1. cmd/iam-store.go

    			return nil, time.Time{}, err
    		}
    
    		mp, ok = c.iamUserPolicyMap.Load(name)
    		if !ok {
    			// Since user "name" could be a parent user of an STS account, we look up
    			// mappings for those too.
    			mp, ok = c.iamSTSPolicyMap.Load(name)
    			if !ok {
    				// Attempt to load parent user mapping for STS accounts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	// If you add registers, update asyncPreempt in runtime.
    
    	// pseudo-registers
    	"SB",
    }
    
    func init() {
    	// Make map from reg names to reg integers.
    	if len(regNamesARM64) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesARM64 {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	newPod = validPod("too-large-pod", 1, getResourceRequirements(getResourceList("100m", "60Gi"), getResourceList("", "")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	if x == o {
    		return false
    	}
    	// Prefer newest modtime.
    	if x.ModTime != o.ModTime {
    		return x.ModTime > o.ModTime
    	}
    
    	// The following doesn't make too much sense, but we want sort to be consistent nonetheless.
    	// Prefer lower types
    	if x.Type != o.Type {
    		return x.Type < o.Type
    	}
    	// Consistent sort on signature
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

      }
    
      private static final class PowerSet<E> extends AbstractSet<Set<E>> {
        final ImmutableMap<E, Integer> inputSet;
    
        PowerSet(Set<E> input) {
          checkArgument(
              input.size() <= 30, "Too many elements to create power set: %s > 30", input.size());
          this.inputSet = Maps.indexMap(input);
        }
    
        @Override
        public int size() {
          return 1 << inputSet.size();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/net/http/client_test.go

    		w.Write([]byte("Hello"))
    	}))
    	ts := cst.ts
    	errLog := new(strings.Builder)
    	ts.Config.ErrorLog = log.New(errLog, "", 0)
    
    	// TODO(bradfitz): add tests for skipping hostname checks too?
    	// would require a new cert for testing, and probably
    	// redundant with these tests.
    	c := ts.Client()
    	for _, insecure := range []bool{true, false} {
    		c.Transport.(*Transport).TLSClientConfig = &tls.Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.assertEvent(t, s.podXdsName("pod1"))
    	// assert that pod1 is using the waypoint specified on the namespace
    	s.assertWaypointAddressForPod(t, "pod1", "10.0.0.1")
    
    	// unannotate the namespace too
    	s.ns.Update(&corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        testNS,
    			Annotations: map[string]string{},
    		},
    	})
    	s.assertEvent(t, s.podXdsName("pod1"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21000")
        def "finalizer dependency runs after finalized entry task when the latter is finalizer dependency too"() {
            given:
            TaskInternal finalizer = createTask("finalizer")
            TaskInternal finalizerDep = task("finalizerDep", type: Async, finalizedBy: [finalizer])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    // freed, such as by calling C.free (be sure to include stdlib.h
    // if C.free is needed).
    func _Cfunc_CString(s string) *_Ctype_char {
    	if len(s)+1 <= 0 {
    		panic("string too large")
    	}
    	p := _cgo_cmalloc(uint64(len(s)+1))
    	sliceHeader := struct {
    		p   unsafe.Pointer
    		len int
    		cap int
    	}{p, len(s)+1, len(s)+1}
    	b := *(*[]byte)(unsafe.Pointer(&sliceHeader))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SLDconst [l] (SRWconst [r] x)) && mergePPC64SldiSrw(l,r) != 0 => (RLWINM [mergePPC64SldiSrw(l,r)] x)
    // The following reduction shows up frequently too. e.g b[(x>>14)&0xFF]
    (CLRLSLDI [c] i:(RLWINM [s] x)) && mergePPC64ClrlsldiRlwinm(c,s) != 0 => (RLWINM [mergePPC64ClrlsldiRlwinm(c,s)] x)
    
    // large constant signed right shift, we leave the sign bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top