Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 453 for too (0.14 sec)

  1. src/go/internal/gcimporter/gcimporter_test.go

    				nimports++
    			}
    		})
    	}
    	const minPkgs = 225 // 'GOOS=plan9 go1.18 list std | wc -l' reports 228; most other platforms have more.
    	if len(pkgs) < minPkgs {
    		t.Fatalf("too few packages (%d) were imported", nimports)
    	}
    
    	t.Logf("tested %d imports", nimports)
    }
    
    var importedObjectTests = []struct {
    	name string
    	want string
    }{
    	// non-interfaces
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	CLONE_PIDFD          = 0x00001000 // set if a pidfd should be placed in parent
    	CLONE_PTRACE         = 0x00002000 // set if we want to let tracing continue on the child too
    	CLONE_VFORK          = 0x00004000 // set if the parent wants the child to wake it up on mm_release
    	CLONE_PARENT         = 0x00008000 // set if we want to have the same parent as the cloner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    	// Note that x is a function value, not a type expression, so we don't need to
    	// call under below.
    	sig := x.typ.(*Signature)
    	got, want := len(targs), sig.TypeParams().Len()
    	if got > want {
    		// Providing too many type arguments is always an error.
    		check.errorf(xlist[got-1], WrongTypeArgCount, "got %d type arguments but want %d", got, want)
    		x.mode = invalid
    		return nil, nil
    	}
    
    	if got < want {
    		if !infer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/encoding/gob/encoder_test.go

    	// Decode and see error.
    	err = NewDecoder(buf).Decode(&slice)
    	if err == nil {
    		t.Fatal("decode: no error")
    	}
    	if !strings.Contains(err.Error(), "slice too big") {
    		t.Fatalf("decode: expected slice too big error, got %s", err.Error())
    	}
    }
    
    type badDataTest struct {
    	input string // The input encoded as a hex string.
    	error string // A substring of the error that should result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    			testShouldFailFast.Store(true)
    		}
    
    		base.SetExitStatus(1)
    		if cancelSignaled {
    			fmt.Fprintf(cmd.Stdout, "*** Test killed with %v: ran too long (%v).\n", base.SignalTrace, testKillTimeout)
    		} else if cancelKilled {
    			fmt.Fprintf(cmd.Stdout, "*** Test killed: ran too long (%v).\n", testKillTimeout)
    		} else if errors.Is(err, exec.ErrWaitDelay) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

                retries << [ret, runtimeError, 1]
                retries << [ret, missing, 1]
                retries << [ret, forbidden, 1]
                retries << [ret, unauthorized, 1]
                // retries on connect timeouts, too many requests, client timeouts
                retries << [ret, connectTimeout, ret]
                retries << [ret, cannotConnect, ret]
                retries << [ret, tooManyRequests, ret]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}, {
    		name:        "latest resource version",
    		key:         key,
    		expectedOut: storedObj,
    		rv:          fmt.Sprintf("%d", lastUpdatedCurrentRV),
    	}, {
    		name:             "too high resource version",
    		key:              key,
    		expectRVTooLarge: true,
    		rv:               strconv.FormatInt(math.MaxInt64, 10),
    	}, {
    		name:              "get non-existing",
    		key:               "/non-existing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. src/go/types/call.go

    	// Note that x is a function value, not a type expression, so we don't need to
    	// call under below.
    	sig := x.typ.(*Signature)
    	got, want := len(targs), sig.TypeParams().Len()
    	if got > want {
    		// Providing too many type arguments is always an error.
    		check.errorf(ix.Indices[got-1], WrongTypeArgCount, "got %d type arguments but want %d", got, want)
    		x.mode = invalid
    		return nil, nil
    	}
    
    	if got < want {
    		if !infer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    		GC cycle the last time the GC CPU limiter was enabled.
    		This metric is useful for diagnosing the root cause of an
    		out-of-memory error, because the limiter trades memory for CPU
    		time when the GC's CPU time gets too high. This is most likely
    		to occur with use of SetMemoryLimit. The first GC cycle is cycle
    		1, so a value of 0 indicates that it was never enabled.
    
    	/gc/pauses:seconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    		uploadOK = false
    	}
    	// If the mode is recorded with an asof date, don't upload if the report
    	// includes any data on or before the asof date.
    	if !asof.IsZero() && !asof.Before(start) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top