Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 585 for respective (0.16 sec)

  1. pkg/proxy/util/utils.go

    				Namespace: svcNamespace,
    				UID:       svcUID,
    			}, nil, v1.EventTypeWarning, "KubeProxyIncorrectIPVersion", "GatherEndpoints", errMsg)
    	}
    }
    
    // MapIPsByIPFamily maps a slice of IPs to their respective IP families (v4 or v6)
    func MapIPsByIPFamily(ipStrings []string) map[v1.IPFamily][]net.IP {
    	ipFamilyMap := map[v1.IPFamily][]net.IP{}
    	for _, ipStr := range ipStrings {
    		ip := netutils.ParseIPSloppy(ipStr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    To learn more, have a look at their respective linked documentation to configure those IDE integration in your project.
    
    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

         *
         * @return The result of the entire build. A {@code Void} type is expected as result. Results for individual actions
         * are supplied to their respective handlers.
         *
         * @throws BuildExceptionVersion1 On build failure.
         * @throws InternalUnsupportedBuildArgumentException When the specified command-line options are not supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/README.md

    # External Repository Staging Area
    
    This directory is the staging area for packages that have been split to their
    own repository. The content here will be periodically published to respective
    top-level k8s.io repositories.
    
    Repositories currently staged here:
    
    - [`k8s.io/api`](https://github.com/kubernetes/api)
    - [`k8s.io/apiextensions-apiserver`](https://github.com/kubernetes/apiextensions-apiserver)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/nodes_test.go

    package syntax
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    )
    
    // A test is a source code snippet of a particular node type.
    // In the snippet, a '@' indicates the position recorded by
    // the parser when creating the respective node.
    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/cross_revision_test.go

        labels:
          app: a
      egress:
      - hosts:
        - "*/*"`).ApplyOrFail(t)
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    			builder := deployment.New(t).WithClusters(t.Clusters()...)
    			for _, ns := range namespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   ns.revision,
    					Namespace: ns.namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/go/types/eval.go

    // functions ignore the context in which an expression is used (e.g., an
    // assignment). Thus, top-level untyped constants will return an
    // untyped type rather than the respective context-specific type.
    func CheckExpr(fset *token.FileSet, pkg *Package, pos token.Pos, expr ast.Expr, info *Info) (err error) {
    	// determine scope
    	var scope *Scope
    	if pkg == nil {
    		scope = Universe
    		pos = nopos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

           * --> POST /greeting http/1.1 (3-byte body)
           *
           * <-- 200 OK (22ms, 6-byte body)
           * ```
           */
          BASIC,
    
          /**
           * Logs request and response lines and their respective headers.
           *
           * Example:
           * ```
           * --> POST /greeting http/1.1
           * Host: example.com
           * Content-Type: plain/text
           * Content-Length: 3
           * --> END POST
           *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. docs/ftp/README.md

    - Access to bucket(s) and object(s) are governed via IAM policies associated with the incoming
      login credentials.
    
    - Allows authentication and access for all
      - Built-in IDP users and their respective service accounts
      - LDAP/AD users and their respective service accounts
      - OpenID/OIDC service accounts
    
    - On versioned buckets, FTP/SFTP only operates on latest objects, if you need to retrieve
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/go/types/gotype.go

    to the same package.
    
    Imports are processed by importing directly from the source of
    imported packages (default), or by importing from compiled and
    installed packages (by setting -c to the respective compiler).
    
    The -c flag must be set to a compiler ("gc", "gccgo") when type-
    checking packages containing imports with relative import paths
    (import "./mypkg") because the source importer cannot know which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top