Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for nodeStage (0.18 sec)

  1. common-protos/k8s.io/api/storage/v1/generated.proto

      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
      // option when mounting a ReadWriteOncePod volume used in Pod that has
      // explicitly set SELinux context. In the future, it may be expanded to other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// typical for storage backends that provide volumes as filesystems on block
    	// devices or as independent shared volumes.
    	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// typical for storage backends that provide volumes as filesystems on block
    	// devices or as independent shared volumes.
    	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. pkg/apis/storage/types.go

    	// typical for storage backends that provide volumes as filesystems on block
    	// devices or as independent shared volumes.
    	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import java.util.Objects;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * Represents a node in the dependency graph.
     */
    public class NodeState implements DependencyGraphNode {
        private static final Logger LOGGER = LoggerFactory.getLogger(NodeState.class);
        private final Long nodeId;
        private final ComponentState component;
        private final List<EdgeState> incomingEdges = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			deviceMountPath:  "path2",
    			shouldFail:       true,
    			createAttachment: true,
    			spec:             volume.NewSpecFromVolume(makeTestVol(pvName, testDriver)),
    		},
    		{
    			testName:         "pv with nodestage timeout should result in in-progress device",
    			volName:          fakecsi.NodeStageTimeOut_VolumeID,
    			devicePath:       "path1",
    			deviceMountPath:  "path2",
    			stageUnstageSet:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

            public Candidate(NodeState node, Capability capability, Collection<NodeState> implicitCapabilityProviders) {
                this.node = node;
                this.capability = capability;
                this.implicitCapabilityProviders = implicitCapabilityProviders;
            }
    
            @Override
            public NodeState getNode() {
                return node;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

        public Long getSelectedVariant() {
            NodeState node = getSelectedNode();
            if (node == null) {
                return null;
            } else {
                return node.getNodeId();
            }
        }
    
        @Nullable
        public NodeState getSelectedNode() {
            if (resolvedVariant != null) {
                return resolvedVariant;
            }
            List<NodeState> targetNodes = findTargetNodes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                                List<NodeState> nodes = version.getNodes();
                                for (NodeState nodeState : nodes) {
                                    // Collect nodes as implicit capability providers if different than current node, selected and not having explicit capabilities
                                    if (node != nodeState && nodeState.isSelected() && doesNotDeclareExplicitCapability(nodeState)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/PendingDependencies.java

            this.reportActivePending = true;
        }
    
        void registerConstraintProvider(NodeState nodeState) {
            if (hardEdges != 0) {
                throw new IllegalStateException("Cannot add a pending node for a dependency which is not pending");
            }
            constraintProvidingNodes.add(nodeState);
            if (nodeState.getComponent().getModule().isVirtualPlatform()) {
                reportActivePending = false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top