Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,937 for too (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/errors.go

    	switch {
    	case err == etcdrpc.ErrCompacted:
    		return errors.NewResourceExpired("The resourceVersion for the provided watch is too old.")
    	}
    	return err
    }
    
    const (
    	expired         string = "The resourceVersion for the provided list is too old."
    	continueExpired string = "The provided continue parameter is too old " +
    		"to display a consistent list result. You can start a new list without " +
    		"the continue parameter."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:59:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue42058a.go

    // source code is governed by a BSD-style license that can be found in
    // the LICENSE file.
    
    package p
    
    var c chan [2 << 16]byte // GC_ERROR "channel element type too large"
    
    type T [1 << 17]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 338 bytes
    - Viewed (0)
  3. test/makemap.go

    // Ensure that typed non-integer, negative and too large
    // values are not accepted as size argument in make for
    // maps.
    
    package main
    
    type T map[int]int
    
    var sink T
    
    func main() {
    	sink = make(T, -1)            // ERROR "negative size argument in make.*|must not be negative"
    	sink = make(T, uint64(1<<63)) // ERROR "size argument too large in make.*|overflows int"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 00:41:01 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue52697.go

    //go:build !386 && !amd64p32 && !arm && !mips && !mipsle
    
    package main
    
    func g() { // GC_ERROR "stack frame too large"
    	xs := [3000 * 2000][33]int{}
    	for _, x := range xs {
    		if len(x) > 50 {
    
    		}
    	}
    }
    
    func main() { // GC_ERROR "stack frame too large"
    	defer f()
    	g()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 16:32:07 UTC 2023
    - 459 bytes
    - Viewed (0)
  5. test/recover5.go

    // Verify that recover arguments requirements are enforced by the
    // compiler.
    
    package main
    
    func main() {
    	_ = recover()     // OK
    	_ = recover(1)    // ERROR "too many arguments"
    	_ = recover(1, 2) // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 12:37:49 UTC 2017
    - 408 bytes
    - Viewed (0)
  6. cmd/erasure-sets_test.go

    		{"object", 37},
    		{"The Shining Script <v1>.pdf", 38},
    		{"Cost Benefit Analysis (2009-2010).pptx", 59},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 35},
    		{"SHØRT", 49},
    		{"There are far too many object names, and far too few bucket names!", 8},
    		{"a/b/c/", 159},
    		{"/a/b/c", 96},
    		{string([]byte{0xff, 0xfe, 0xfd}), 147},
    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_proxy_errors.txt

    ! go list -m vcs-test.golang.org/auth/ormanylines@latest
    stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
    
    # Server responses should be truncated to some reasonable number of characters.
    ! go list -m vcs-test.golang.org/auth/oronelongline@latest
    ! stderr 'blah{40}'
    stderr '\tserver response: \[Truncated: too long\.\]$'
    
    # Responses from servers using the 'mod' protocol should be propagated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 698 bytes
    - Viewed (0)
  8. test/fixedbugs/issue7675.go

    	f("1", 2, 3.1, "4")
    	f(1, 0.5, "hello", 4, 5) // ERROR "too many arguments|incompatible type"
    	g(1, 0.5)                // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1)
    	g(1, 0.5, []int{3, 4}...) // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1, "4", "5")
    	g(1, 0.5, "hello", 4, []int{5, 6}...) // ERROR "too many arguments|truncated to integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 785 bytes
    - Viewed (0)
  9. pkg/util/async/bounded_frequency_runner_test.go

    	// Run again, before minInterval expires.
    	timer.advance(500 * time.Millisecond) // rel=500ms
    	runner.Run()
    	waitForDefer("too soon after first", t, timer, obj, 500*time.Millisecond)
    
    	// Run again, before minInterval expires.
    	timer.advance(499 * time.Millisecond) // rel=999ms
    	runner.Run()
    	waitForDefer("still too soon after first", t, timer, obj, 1*time.Millisecond)
    
    	// Do the deferred run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/sizes.go

    	// A negative entry in the result indicates that the struct is too large.
    	Offsetsof(fields []*Var) []int64
    
    	// Sizeof returns the size of a variable of type T.
    	// Sizeof must implement the size guarantees required by the spec.
    	// A negative result indicates that T is too large.
    	Sizeof(T Type) int64
    }
    
    // StdSizes is a convenience type for creating commonly used Sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top