Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for plan (0.06 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInsecureClientRequest: {
    		Code:           "XMinioInsecureClientRequest",
    		Description:    "Cannot respond to plain-text request from TLS-encrypted server",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRequestTimedout: {
    		Code:           "RequestTimeout",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  2. src/html/template/exec_test.go

    	}
    	err = tmpl.Execute(&b, "result")
    	if err != nil {
    		t.Error(err)
    	}
    	if b.String() != "result" {
    		t.Errorf("%s got %q, expected %q", text, b.String(), "result")
    	}
    
    	// Even a plain function fails - need to use call.
    	f := func() string { return "result" }
    	b.Reset()
    	err = tmpl.Execute(&b, f)
    	if err == nil {
    		t.Error("expected error with no call, got none")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
       * {@link #copyInto} and forget the {@code SetView} itself.
       *
       * @since 2.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Head(us) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.Post(us, "text/plain", strings.NewReader("body")) // Note: doesn't hit network
    	matchReturnedCookies(t, expectedCookies, tr.req.Cookies())
    
    	client.PostForm(us, url.Values{}) // Note: doesn't hit network
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// versionsWithUnchangedSchemas tracks schemas of which versions are unchanged when updating a CRD.
    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	}
    	err = tmpl.Execute(&b, "result")
    	if err != nil {
    		t.Error(err)
    	}
    	if b.String() != "result" {
    		t.Errorf("%s got %q, expected %q", text, b.String(), "result")
    	}
    
    	// Even a plain function fails - need to use call.
    	f := func() string { return "result" }
    	b.Reset()
    	err = tmpl.Execute(&b, f)
    	if err == nil {
    		t.Error("expected error with no call, got none")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    // pointer slots.
    //
    // The type typ must correspond exactly to [src, src+size) and [dst, dst+size).
    // dst, src, and size must be pointer-aligned.
    // The type typ must have a plain bitmap, not a GC program.
    // The only use of this function is in channel sends, and the
    // 64 kB channel element limit takes care of this for us.
    //
    // Must not be preempted because it typically runs right before memmove,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    		// nothing to do
    	case strings.HasPrefix(msg, "in "), strings.HasPrefix(msg, "at "), strings.HasPrefix(msg, "after "):
    		msg = " " + msg
    	case strings.HasPrefix(msg, "expected "):
    		msg = ", " + msg
    	default:
    		// plain error - we don't care about current token
    		p.errorAt(pos, "syntax error: "+msg)
    		return
    	}
    
    	// determine token string
    	var tok string
    	switch p.tok {
    	case _Name:
    		tok = "name " + p.lit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/go/build/build.go

    // Keep consistent with cmd/go/internal/cfg.defaultGOPATH.
    func defaultGOPATH() string {
    	env := "HOME"
    	if runtime.GOOS == "windows" {
    		env = "USERPROFILE"
    	} else if runtime.GOOS == "plan9" {
    		env = "home"
    	}
    	if home := os.Getenv(env); home != "" {
    		def := filepath.Join(home, "go")
    		if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
    			// Don't set the default GOPATH to GOROOT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	// We have two status
    	// Accepted: is the configuration valid. We only have errors in listeners, and the status is not supposed to
    	// be tied to listeners, so this is always accepted
    	// Programmed: is the data plane "ready" (note: eventually consistent)
    	gatewayConditions := map[string]*condition{
    		string(k8s.GatewayConditionAccepted): {
    			reason:  string(k8s.GatewayReasonAccepted),
    			message: "Resource accepted",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top