Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 190 for too (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"9Ei", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"9223372036854775807Ki", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"12E", decQuantity(12, 18, DecimalSI)},
    
    		// We'll accept fractional binary stuff, too.
    		{"100.035Ki", decQuantity(10243584, -2, BinarySI)},
    		{"0.5Mi", decQuantity(.5*1024*1024, 0, BinarySI)},
    		{"0.05Gi", decQuantity(536870912, -1, BinarySI)},
    		{"0.025Ti", decQuantity(274877906944, -1, BinarySI)},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    						canLiveOnStack.add(arg.ID)
    					}
    				}
    			}
    		}
    	}
    
    	// The clobberdeadreg experiment inserts code to clobber dead registers
    	// at call sites.
    	// Ignore huge functions to avoid doing too much work.
    	if base.Flag.ClobberDeadReg && len(s.f.Blocks) <= 10000 {
    		// TODO: honor GOCLOBBERDEADHASH, or maybe GOSSAHASH.
    		s.doClobber = true
    	}
    }
    
    func (s *regAllocState) close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			s, ok := status.FromError(err)
    			if !ok || s.Code() != codes.Unimplemented {
    				// We could introduce a backoff delay or jitter, but this is largely catching cases
    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    	var maximumAllowedReplicas int32
    
    	var possibleLimitingCondition string
    	var possibleLimitingReason string
    
    	minimumAllowedReplicas = hpaMinReplicas
    
    	// Do not scaleup too much to prevent incorrect rapid increase of the number of master replicas caused by
    	// bogus CPU usage report from heapster/kubelet (like in issue #32304).
    	scaleUpLimit := calculateScaleUpLimit(currentReplicas)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    		config := testConfig.Clone()
    		config.Certificates = []Certificate{cert}
    		config.MinVersion = VersionTLS13
    		server := Server(serverConn, config)
    		err := server.Handshake()
    		expectError(t, err, "key size too small")
    		close(done)
    	}()
    	err = client.Handshake()
    	expectError(t, err, "handshake failure")
    	<-done
    }
    
    func TestMultipleCertificates(t *testing.T) {
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    		maxMemoryBytes -= int64(len(name))
    		maxMemoryBytes -= mapEntryOverhead
    		if maxMemoryBytes < 0 {
    			// We can't actually take this path, since nextPart would already have
    			// rejected the MIME headers for being too large. Check anyway.
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, multipart.ErrMessageTooLarge)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	if ch, ok := lookupCache.Load(ckey); ok {
    		return ch.(*rtype)
    	}
    
    	// This restriction is imposed by the gc compiler and the runtime.
    	if typ.Size_ >= 1<<16 {
    		panic("reflect.ChanOf: element size too large")
    	}
    
    	// Look in known types.
    	var s string
    	switch dir {
    	default:
    		panic("reflect.ChanOf: invalid dir")
    	case SendDir:
    		s = "chan<- " + stringFor(typ)
    	case RecvDir:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	"F15",
    
    	// If you add registers, update asyncPreempt in runtime.
    
    	//pseudo-registers
    	"SB",
    }
    
    func init() {
    	// Make map from reg names to reg integers.
    	if len(regNamesS390X) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesS390X {
    		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: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      // This class is never actually serialized directly, but we have to make the
      // warning go away (and suppressing would suppress for all nested classes too)
      private static final long serialVersionUID = 0;
    
      /**
       * Not supported. Use {@link #toImmutableSortedMap}, which offers better type-safety, instead.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    // Ensure SyncService gracefully handles a missing service. This test also
    // populates another existing service to ensure a clean up process doesn't
    // remove too much.
    func TestSyncServiceMissing(t *testing.T) {
    	namespace := metav1.NamespaceDefault
    	client, esController := newController(t, []string{"node-1"}, time.Duration(0))
    
    	// Build up existing service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top