Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,645 for too (0.03 sec)

  1. src/internal/types/testdata/fixedbugs/issue59190.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    type E [1 << 30]complex128
    var a [1 << 30]E
    var _ = unsafe.Sizeof(a /* ERROR "too large" */ )
    
    var s struct {
    	_ [1 << 30]E
    	x int
    }
    var _ = unsafe.Offsetof(s /* ERROR "too large" */ .x)
    
    // Test case from issue (modified so it also triggers on 32-bit platforms).
    
    type A [1]int
    type S struct {
    	x A
    	y [1 << 30]A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 16:52:49 UTC 2023
    - 684 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // is reached.
    //
    // Poll always waits the interval before the run of 'condition'.
    // 'condition' will always be invoked at least once.
    //
    // Some intervals may be missed if the condition takes too long or the time
    // window is too short.
    //
    // If you want to Poll something forever, see PollInfinite.
    //
    // Deprecated: This method does not return errors from context, use PollUntilContextTimeout.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/validation_test.go

    		},
    		{
    			name:         "service cidr is too big",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("10.0.0.0/8", ""),
    		},
    		{
    			name:         "service cidr IPv4 is too big but gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("10.0.0.0/8", ""),
    			gate:         true,
    		},
    		{
    			name:         "service cidr IPv6 is too big but gate enbled",
    			expectErrors: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/UtilTest.kt

            checkDuration("timeout", 1, TimeUnit.NANOSECONDS)
          },
        ).hasMessage("timeout too small")
        assertThat(
          assertThrows<IllegalArgumentException> {
            checkDuration(
              "timeout",
              1L + Int.MAX_VALUE.toLong(),
              TimeUnit.MILLISECONDS,
            )
          },
        ).hasMessage("timeout too large")
      }
    
      @Test
      fun testDurationDuration() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/builtins0.go

    	_ = append(s, s /* ERROR "cannot use s" */ )
    	_ = append(s...) /* ERROR "not enough arguments" */
    	_ = append(s, b, s /* ERROR "too many arguments" */ ...)
    	_ = append(s, 1, 2, 3)
    	_ = append(s, 1, 2, 3, x /* ERROR "cannot use x" */ , 5, 6, 6)
    	_ = append(s, 1, 2 /* ERROR "too many arguments" */, s...)
    	_ = append([]interface{}(nil), 1, 2, "foo", x, 3.1425, false)
    
    	type S []byte
    	type T string
    	var t T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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