Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 780 for associateBy (1.66 sec)

  1. pilot/pkg/model/context.go

    	PrevSidecarScope *SidecarScope
    
    	// The merged gateways associated with the proxy if this is a Router
    	MergedGateway *MergedGateway
    
    	// PrevMergedGateway contains information about merged gateway associated with the proxy previously
    	PrevMergedGateway *PrevMergedGateway
    
    	// ServiceTargets contains a list of all Services associated with the proxy, contextualized for this particular proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    The Pass type has functions to import and export facts,
    associated either with an object or with a package:
    
    	type Pass struct {
    		...
    		ExportObjectFact func(types.Object, Fact)
    		ImportObjectFact func(types.Object, Fact) bool
    
    		ExportPackageFact func(fact Fact)
    		ImportPackageFact func(*types.Package, Fact) bool
    	}
    
    An Analyzer may only export facts associated with the current package or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    		delete(e.cookies, fCookie)
    	}
    	delete(e.paths, path)
    	return err
    }
    
    // AssociateFd wraps calls to port_associate(3c) on file descriptors.
    func (e *EventPort) AssociateFd(fd uintptr, events int, cookie interface{}) error {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	if _, found := e.fds[fd]; found {
    		return fmt.Errorf("%v is already associated with this Event Port", fd)
    	}
    	fCookie, err := createFileObjCookie("", nil, cookie)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_HTTPIngressPath = map[string]string{
    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    }
    
    // IngressSpec describes the Ingress the user wishes to exist.
    type IngressSpec struct {
    	// ingressClassName is the name of the IngressClass cluster resource. The
    	// associated IngressClass defines which controller will implement the
    	// resource. This replaces the deprecated `kubernetes.io/ingress.class`
    	// annotation. For backwards compatibility, when that annotation is set, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. pkg/log/scope.go

    }
    
    // SetOutputLevel adjusts the output level associated with the scope.
    func (s *Scope) SetOutputLevel(l Level) {
    	s.outputLevel.Store(l)
    }
    
    // GetOutputLevel returns the output level associated with the scope.
    func (s *Scope) GetOutputLevel() Level {
    	return s.outputLevel.Load().(Level)
    }
    
    // SetStackTraceLevel adjusts the stack tracing level associated with the scope.
    func (s *Scope) SetStackTraceLevel(l Level) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return Optional.ofNullable(location);
        }
    
        /**
         * Returns the path type associated to the given {@code javax.tool} location.
         * This method is the converse of {@link #location()}.
         *
         * @param location identification of a path in the {@code javax.tool} API
         * @return Java path type associated to the given location
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top