Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 182 for deutsch (0.2 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"":         "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
    	"metadata": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec represents specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_util.go

    	defer c.plugin.targetLocks.UnlockKey(iqn)
    
    	portals := removeDuplicate(bkpPortal)
    	if len(portals) == 0 {
    		return fmt.Errorf("iscsi detach disk: failed to detach iscsi disk. Couldn't get connected portals from configurations")
    	}
    
    	// If device is no longer used, see if need to logout the target
    	if isSessionBusy(c.iscsiDisk.plugin.host, portals[0], iqn) {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // spec represents specification of the desired attach/detach volume behavior.
      // Populated by the Kubernetes system.
      optional VolumeAttachmentSpec spec = 2;
    
      // status represents status of the VolumeAttachment request.
      // Populated by the entity completing the attach or detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeAttachmentStatus status = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/processenvironment/NativePlatformBackedProcessEnvironment.java

        }
    
        @Override
        public Long getPid() {
            return (long) process.getProcessId();
        }
    
        @Override
        public void detachProcess() {
            process.detach();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    			node.Annotations = make(map[string]string)
    		}
    
    		klog.V(2).InfoS("Setting node annotation to enable volume controller attach/detach")
    		node.Annotations[volutil.ControllerManagedAttachAnnotation] = "true"
    	} else {
    		klog.V(2).InfoS("Controller attach/detach is disabled for this node; Kubelet will attach and detach volumes")
    	}
    
    	// @question: should this be place after the call to the cloud provider? which also applies labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"":         "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.",
    	"metadata": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec represents specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/attacher.go

    		manager: &ISCSIUtil{},
    		plugin:  plugin,
    	}, nil
    }
    
    func (plugin *iscsiPlugin) NewDeviceUnmounter() (volume.DeviceUnmounter, error) {
    	return plugin.NewDetacher()
    }
    
    func (detacher *iscsiDetacher) Detach(volumeName string, nodeName types.NodeName) error {
    	return nil
    }
    
    func (detacher *iscsiDetacher) UnmountDevice(deviceMountPath string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. pkg/fieldpath/fieldpath_test.go

    		"management.cattle.io/pod-requests":                      `{"cpu":"2482m","memory":"7984Mi","pods":"26"}`,
    		"node.alpha.kubernetes.io/ttl":                           "0",
    		"volumes.kubernetes.io/controller-managed-attach-detach": "true",
    	}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		s = FormatMap(m)
    	}
    	// Avoid compiler optimizations
    	_ = s
    }
    
    func TestExtractFieldPathAsString(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_executor.go

    	// volumes global mount path from the device (for attachable volumes only,
    	// freeing it for detach. It then updates the actual state of the world to
    	// reflect that.
    	//
    	// For 'Block' volumeMode, this method checks number of symbolic links under
    	// global map path. If number of reference is zero, remove global map path
    	// directory and free a volume for detach.
    	// It then updates the actual state of the world to reflect that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/Block.java

        protected Block(BlockPayload payload) {
            this.payload = payload;
            payload.setBlock(this);
        }
    
        public BlockPayload getPayload() {
            return payload;
        }
    
        protected void detach() {
            payload.setBlock(null);
            payload = null;
        }
    
        public abstract BlockPointer getPos();
    
        public abstract int getSize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top