Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for hostlink (0.74 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            if (modelNode != null && modelNode.hasLink(task.getName())) {
                realizeTask(MODEL_PATH.child(task.getName()), ModelNode.State.GraphClosed);
            }
        }
    
        /**
         * @return true if this method _may_ have done some work.
         */
        private boolean maybeCreateTasks(String name) {
            if (modelNode != null && modelNode.hasLink(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    == Artifact
    
    A file or directory produced by a build, such as a JAR, a ZIP distribution, or a native executable.
    
    Artifacts are typically designed to be used or consumed by users or other projects, or deployed to hosting systems.
    In such cases, the artifact is a single file.
    Directories are common in the case of inter-project dependencies to avoid the cost of producing the publishable artifact.
    
    [[sub:terminology_capability]]
    == Capability
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	if pl.args.IgnorePreferredTermsOfExistingPods && !hasConstraints {
    		return framework.NewStatus(framework.Skip)
    	}
    
    	// Unless the pod being scheduled has preferred affinity terms, we only
    	// need to process nodes hosting pods with affinity.
    	var allNodes []*framework.NodeInfo
    	var err error
    	if hasConstraints {
    		allNodes, err = pl.sharedLister.NodeInfos().List()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. cmd/background-newdisks-heal-ops.go

    			t.delete(ctx)
    		}
    	}
    
    	return nil
    }
    
    // monitorLocalDisksAndHeal - ensures that detected new disks are healed
    //  1. Only the concerned erasure set will be listed and healed
    //  2. Only the node hosting the disk is responsible to perform the heal
    func monitorLocalDisksAndHeal(ctx context.Context, z *erasureServerPools) {
    	// Perform automatic disk healing when a disk is replaced locally.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/README

    [fuzz-instrumented]
    	GOOS/GOARCH supports -fuzz with instrumentation
    [git]
    	the 'git' executable exists and provides the standard CLI
    [go-builder]
    	GO_BUILDER_NAME is non-empty
    [link]
    	testenv.HasLink()
    [msan]
    	GOOS/GOARCH supports -msan
    [mustlinkext]
    	platform always requires external linking
    [net:*]
    	can connect to external network host <suffix>
    [pielinkext]
    	platform requires external linking for PIE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            if (!(name instanceof String)) {
                viewState.assertCanReadChildren();
                return false;
            }
            viewState.assertCanReadChild((String) name);
            return modelNode.hasLink((String) name, elementFilter);
        }
    
        @Override
        public boolean containsValue(Object item) {
            throw new UnsupportedOperationException("Not implemented yet.");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    // VolumeConfig is how volume plugins receive configuration.  An instance
    // specific to the plugin will be passed to the plugin's
    // ProbeVolumePlugins(config) func.  Reasonable defaults will be provided by
    // the binary hosting the plugins while allowing override of those default
    // values.  Those config values are then set to an instance of VolumeConfig
    // and passed to the plugin.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top