Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for nodeStage (0.15 sec)

  1. pkg/apis/core/validation/validation_test.go

    		},
    		"csi-nodestage-enabled-from-invalidSecretRefmissingname-to-invalidSecretRefmissingname": {
    			isExpectedFailure: false,
    			oldVolume:         getCSIVolumeWithSecret(validCSIVolume, invalidSecretRefmissingName, "nodeStage"),
    			newVolume:         getCSIVolumeWithSecret(validCSIVolume, invalidSecretRefmissingName, "nodeStage"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1beta1/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.9K bytes
    - Viewed (0)
  3. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top