Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 506 for indication (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

                this.moduleName = Objects.requireNonNull(moduleName);
            }
    
            /**
             * Returns the type of path without indication about the target module.
             * This is usually {@link #PATCH_MODULE}.
             *
             * @return type of path without indication about the target module
             */
            @Nonnull
            public JavaPathType rawType() {
                return JavaPathType.this;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	go func() {
    		defer cancel()
    
    		select {
    		case <-stopCh:
    		case <-time.After(maxWait):
    
    		// the caller can explicitly cancel the context which is an
    		// indication to us to exit the goroutine immediately.
    		// Note that we are calling cancel more than once when we are here,
    		// CancelFunc is idempotent and we expect no ripple effects here.
    		case <-ctx.Done():
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. pkg/registry/core/serviceaccount/storage/token.go

    					}
    					switch {
    					case errors.IsNotFound(err):
    						// if the referenced Node object does not exist, we still embed just the pod name into the
    						// claims so that clients still have some indication of what node a pod is assigned to when
    						// inspecting a token (even if the UID is not present).
    						klog.V(4).ErrorS(err, "failed fetching node for pod", "pod", klog.KObj(pod), "podUID", pod.UID, "nodeName", nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/apis/authorization/types.go

    	// may not be true if Allowed is true.
    	Denied bool
    	// Reason is optional.  It indicates why a request was allowed or denied.
    	Reason string
    	// EvaluationError is an indication that some error occurred during the authorization check.
    	// It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/lds.go

    						ApiListener: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typestring.go

    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"reason":          "Reason is optional.  It indicates why a request was allowed or denied.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"reason":          "Reason is optional.  It indicates why a request was allowed or denied.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/model.go

    	attrDestPort         = "destination.port"            // must be in the range [0, 65535].
    	attrConnSNI          = "connection.sni"              // server name indication, e.g. "www.example.com".
    	attrEnvoyFilter      = "experimental.envoy.filters." // an experimental attribute for checking Envoy Metadata directly.
    
    	// Internal names used to generate corresponding Envoy matcher.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top