Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 685 for too (0.02 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		{
    			pod:        newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}),
    			nodeInfo:   framework.NewNodeInfo(newResourcePod(framework.Resource{MilliCPU: 5, Memory: 5})),
    			name:       "even if both resources fit, predicate fails when there's no space for additional pod",
    			wantStatus: framework.NewStatus(framework.Unschedulable, "Too many pods"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/apiextensions.go

    	// prefer the more compact serialization (v1beta1) for storage until https://issue.k8s.io/82292 is resolved for objects whose v1 serialization is too big but whose v1beta1 serialization can be stored
    	etcdOptions.StorageConfig.EncodeVersioner = runtime.NewMultiGroupVersioner(v1beta1.SchemeGroupVersion, schema.GroupKind{Group: v1beta1.GroupName})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // errors should be considered equivalent if there is a theoretical refactoring
    // of the type checker in which they are emitted in exactly one place. For
    // example, the type checker emits different error messages for "too many
    // arguments" and "too few arguments", but one can imagine an alternative type
    // checker where this check instead just emits a single "wrong number of
    // arguments", so these errors should have the same code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	})
    	for _, large := range largeStackFrames {
    		if large.callee != 0 {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args + %d MB callee", large.locals>>20, large.args>>20, large.callee>>20)
    		} else {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args", large.locals>>20, large.args>>20)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. test/codegen/shift.go

    		// arm64:"LSL",-"CSEL"
    		return v << s
    	}
    	panic("shift too large")
    }
    
    func rshGuarded64U(v uint64, s uint) uint64 {
    	if s < 64 {
    		// riscv64:"SRL\t",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    		// arm64:"LSR",-"CSEL"
    		return v >> s
    	}
    	panic("shift too large")
    }
    
    func rshGuarded64(v int64, s uint) int64 {
    	if s < 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/internal/stringslite/strings.go

    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    			if s[i+1] == c1 && s[i:i+n] == substr {
    				return i
    			}
    			fails++
    			i++
    			// Switch to bytealg.IndexString when IndexByte produces too many false positives.
    			if fails > bytealg.Cutover(i) {
    				r := bytealg.IndexString(s[i:], substr)
    				if r >= 0 {
    					return r + i
    				}
    				return -1
    			}
    		}
    		return -1
    	}
    	c0 := substr[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

            context
        }
    
        static class SimulatedDownloadLatencyFilter implements Filter {
            // don't put those numbers too high, or the test is going to be really slow for each iteration!
            private final static int[] DELAYS = [2, 3, 5, 8, 13, 21, 34, 55]
    
            private final static boolean LOG = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    	re(`^-?0\.0000000`),         // too tiny, should use exponential notation
    	re(`^-?[0-9]{22}`),          // too big, should use exponential notation
    	re(`[1-9][0-9]{16}[1-9]`),   // too many significant digits in integer
    	re(`[1-9][0-9.]{17}[1-9]`),  // too many significant digits in decimal
    	// below here for float32 only
    	re(`[1-9][0-9]{8}[1-9]`),  // too many significant digits in integer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	store.upperBoundCapacity = 5
    
    	store.Add(makeTestPod("pod", 3))
    
    	// Test for Added event.
    	{
    		_, err := store.getAllEventsSince(1, storage.ListOptions{})
    		if err == nil {
    			t.Errorf("expected error too old")
    		}
    		if _, ok := err.(*errors.StatusError); !ok {
    			t.Errorf("expected error to be of type StatusError")
    		}
    	}
    	{
    		result, err := store.getAllEventsSince(2, storage.ListOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SRLIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRAIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SD	X5, 4294967296(X6)		// ERROR "constant 4294967296 too large"
    	SRLI	$1, X5, F1			// ERROR "expected integer register in rd position but got non-integer register F1"
    	SRLI	$1, F1, X5			// ERROR "expected integer register in rs1 position but got non-integer register F1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top