Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for hostlink (0.27 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            }
            this.privateDataType = type;
            this.privateData = object;
        }
    
        @Override
        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/codehost.go

    	MaxLICENSE = 16 << 20  // maximum size of LICENSE file
    	MaxZipFile = 500 << 20 // maximum size of downloaded zip file
    )
    
    // A Repo represents a code hosting source.
    // Typical implementations include local version control repositories,
    // remote version control servers, and code hosting sites.
    //
    // A Repo must be safe for simultaneous use by multiple goroutines,
    // and callers must not modify returned values, which may be cached and shared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/internal/testenv/testenv.go

    	ok, reason := hasSymlink()
    	if !ok {
    		t.Skipf("skipping test: cannot make symlinks on %s/%s: %s", runtime.GOOS, runtime.GOARCH, reason)
    	}
    }
    
    // HasLink reports whether the current system can use os.Link.
    func HasLink() bool {
    	// From Android release M (Marshmallow), hard linking files is blocked
    	// and an attempt to call link() on a file will return EACCES.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    proxy protocol.
    
    Import path checking
    
    When the custom import path feature described above redirects to a
    known code hosting site, each of the resulting packages has two possible
    import paths, using the custom domain or the known hosting site.
    
    A package statement is said to have an "import comment" if it is immediately
    followed (before the next newline) by a comment of one of these two forms:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/internal/testenv/testenv_test.go

    		// we will presumably find out about it when those tests fail.)
    		switch runtime.GOOS {
    		case "ios":
    			if isCorelliumBuilder(b) {
    				// The corellium environment is self-hosting, so it should be able
    				// to build even though real "ios" devices can't exec.
    			} else {
    				// The usual iOS sandbox does not allow the app to start another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/discovery/v1/generated.proto

      // in the zone and nodeName fields instead.
      // +optional
      map<string, string> deprecatedTopology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // zone is the name of the Zone this endpoint exists in.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. docs/distributed/README.md

    ### High availability
    
    A stand-alone MinIO server would go down if the server hosting the drives goes offline. In contrast, a distributed MinIO setup with _m_ servers and _n_ drives will have your data safe as long as _m/2_ servers or _m*n_/2 or more drives are online.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    ====
    
    The generated Wrapper properties file, `gradle/wrapper/gradle-wrapper.properties`, stores the information about the Gradle distribution:
    
    * The *server hosting* the Gradle distribution.
    * The *type of Gradle distribution*. By default, the `-bin` distribution contains only the runtime but no sample code and documentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top