Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for deutsch (0.21 sec)

  1. pkg/volume/portworx/portworx.go

    	// Deletes a volume
    	DeleteVolume(deleter *portworxVolumeDeleter) error
    	// Attach a volume
    	AttachVolume(mounter *portworxVolumeMounter, attachOptions map[string]string) (string, error)
    	// Detach a volume
    	DetachVolume(unmounter *portworxVolumeUnmounter) error
    	// Mount a volume
    	MountVolume(mounter *portworxVolumeMounter, mountDir string) error
    	// Unmount a volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/apis/storage/types.go

    	// +optional
    	metav1.ObjectMeta
    
    	// Specification of the desired attach/detach volume behavior.
    	// Populated by the Kubernetes system.
    	Spec VolumeAttachmentSpec
    
    	// Status of the VolumeAttachment request.
    	// Populated by the entity completing the attach or detach
    	// operation, i.e. the external-attacher.
    	// +optional
    	Status VolumeAttachmentStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/tags.go

    	Marathi              Tag = Tag(compact.Marathi)
    	Malay                Tag = Tag(compact.Malay)
    	Burmese              Tag = Tag(compact.Burmese)
    	Nepali               Tag = Tag(compact.Nepali)
    	Dutch                Tag = Tag(compact.Dutch)
    	Norwegian            Tag = Tag(compact.Norwegian)
    	Punjabi              Tag = Tag(compact.Punjabi)
    	Polish               Tag = Tag(compact.Polish)
    	Portuguese           Tag = Tag(compact.Portuguese)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/WorkInProgressRenderer.java

            operationIdToAssignedLabels.put(operation.getOperationId(), association);
        }
    
        // Declares that we're not following updates from this ProgressOperation anymore
        private void detach(ProgressOperation operation) {
            if (!isRenderable(operation)) {
                return;
            }
    
            unshow(operation);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. build/build-image/rsyncd.sh

      hosts deny = *
      hosts allow = ${ALLOW} ${ALLOW_HOST-}
      auth users = k8s
      secrets file = ${SECRETS}
      read only = false
      path = ${VOLUME}
      filter = - /_tmp/
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    }
    
    // Detacher can detach a volume from a node.
    type Detacher interface {
    	DeviceUnmounter
    	// Detach the given volume from the node with the given Name.
    	// volumeName is name of the volume as returned from plugin's
    	// GetVolumeName().
    	Detach(volumeName string, nodeName types.NodeName) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. build/common.sh

        "${DOCKER_MOUNT_ARGS[@]}"
      )
    
      local detach=false
    
      [[ $# != 0 ]] || { echo "Invalid input - please specify docker arguments followed by --." >&2; return 4; }
      # Everything before "--" is an arg to docker
      until [ -z "${1-}" ] ; do
        if [[ "$1" == "--" ]]; then
          shift
          break
        fi
        docker_run_opts+=("$1")
        if [[ "$1" == "-d" || "$1" == "--detach" ]] ; then
          detach=true
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	}
    	for _, csiNode := range csiNodes.Items {
    		csiNodeToAdd := csiNode
    		csiNodeInformer.GetIndexer().Add(&csiNodeToAdd)
    	}
    
    	informerFactory.Start(tCtx.Done())
    
    	if !kcache.WaitForNamedCacheSync("attach detach", tCtx.Done(),
    		informerFactory.Core().V1().Pods().Informer().HasSynced,
    		informerFactory.Core().V1().Nodes().Informer().HasSynced,
    		informerFactory.Storage().V1().CSINodes().Informer().HasSynced) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/syscall/exec_freebsd.go

    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal
    	Ctty    int  // Controlling TTY fd
    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            } else {
                if (useLegacyGpg) {
                    args.add("--use-agent");
                }
            }
            args.add("--no-tty");
            args.add("--batch");
            args.add("--detach-sign");
            return args;
        }
    
        @Override
        public String getKeyId() {
            return keyName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top