Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for Suggestion (0.2 sec)

  1. pkg/registry/core/pod/storage/eviction.go

    }
    
    func createTooManyRequestsError(name string) error {
    	// TODO: Once there are time-based
    	// budgets, we can sometimes compute a sensible suggested value.  But
    	// even without that, we can give a suggestion (even if small) that
    	// prevents well-behaved clients from hammering us.
    	err := errors.NewTooManyRequests("Cannot evict pod as it would violate the pod's disruption budget.", 10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint.go

    			}
    			if enrollNamespace {
    				if !overwrite && hasWaypoint {
    					// we don't want to error on the user when they don't explicitly overwrite namespaced Waypoints,
    					// we just warn them and provide a suggestion
    					fmt.Fprintf(cmd.OutOrStdout(), "Warning: namespace (%s) already has an enrolled Waypoint. Consider "+
    						"adding the `"+"--overwrite"+"` flag to your apply command.\n", ns)
    					return nil
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	if !labels.HasCanonicalServiceName(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service name label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    	if !labels.HasCanonicalServiceRevision(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service revision label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_test.go

    		{[]Checker{InPathCheck{executable: "foobarbaz", mandatory: true, exec: exec.New()}}, false, ""},
    		{[]Checker{InPathCheck{executable: "foobar", mandatory: false, exec: exec.New(), suggestion: "install foobar"}}, true, "\t[WARNING FileExisting-foobar]: foobar not found in system path\nSuggestion: install foobar\n"},
    	}
    	for _, rt := range tokenTest {
    		buf := new(bytes.Buffer)
    		actual := RunChecks(rt.p, buf, sets.New[string]())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    		if visible(ci.Sym) {
    			base.Errorf("unknown field '%v' in struct literal of type %v (but does have %v)", sym, typ, ci.Sym)
    		} else if nonexported(sym) && sym.Name == ci.Sym.Name { // Ensure exactness before the suggestion.
    			base.Errorf("cannot refer to unexported field '%v' in struct literal of type %v", sym, typ)
    		} else {
    			base.Errorf("unknown field '%v' in struct literal of type %v", sym, typ)
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    const (
    	// blockTimeout determines how long we're willing to block the request
    	// to wait for a given resource version to be propagated to cache,
    	// before terminating request and returning Timeout error with retry
    	// after suggestion.
    	blockTimeout = 3 * time.Second
    
    	// resourceVersionTooHighRetrySeconds is the seconds before a operation should be retried by the client
    	// after receiving a 'too high resource version' error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    	if depth < 1 {
    		depth = 1
    	}
    	return depth
    }
    
    // Format the binary expression: decide the cutoff and then format.
    // Let's call depth == 1 Normal mode, and depth > 1 Compact mode.
    // (Algorithm suggestion by Russ Cox.)
    //
    // The precedences are:
    //
    //	5             *  /  %  <<  >>  &  &^
    //	4             +  -  |  ^
    //	3             ==  !=  <  <=  >  >=
    //	2             &&
    //	1             ||
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

        subject:
          - fooar Object [*]
              suggestions: foobar
    
      foobah { ... } @ build.gradle line 18, column 17
        subject:
          - foobah Object [*]
              suggestions: foobar
    
      foonar { ... } @ build.gradle line 16, column 17
        subject:
          - foonar Object [*]
              suggestions: foobar
    ''')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/report/unbound/UnboundRulesReporterTest.groovy

                            .mutableInput(UnboundRuleInput.type(Integer).bound().path("parent.p3"))
                            .immutableInput(UnboundRuleInput.type(Number).path("parent.p4").suggestions("parent.p31", "parent.p32"))
                            .immutableInput(UnboundRuleInput.type(Number))
                            .immutableInput(UnboundRuleInput.type(Number).bound().path("parent.p6")).build()
            ])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

                            .mutableInput(UnboundRuleInput.type(Number).path("subject").suggestions("subject"))
                            .immutableInput(UnboundRuleInput.type(String))
                            .immutableInput(UnboundRuleInput.type(Boolean).path("input.second").suggestions("input.second"))
                            .immutableInput(UnboundRuleInput.type(Long).path("input.third").bound())
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top