Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 264 for detacher (0.14 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                    handle.start();
                    LOGGER.debug("Gradle daemon process is starting. Waiting for the daemon to detach...");
                    handle.waitForFinish();
                    LOGGER.debug("Gradle daemon process is now detached.");
                } finally {
                    CompositeStoppable.stoppable(execActionFactory).stop();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/disk_manager.go

    	MakeGlobalVDPDName(disk iscsiDisk) string
    	// Attaches the disk to the kubelet's host machine.
    	AttachDisk(b iscsiDiskMounter) (string, error)
    	// Detaches the disk from the kubelet's host machine.
    	DetachDisk(disk iscsiDiskUnmounter, mntPath string) error
    	// Detaches the block disk from the kubelet's host machine.
    	DetachBlockISCSIDisk(disk iscsiDiskUnmapper, mntPath string) error
    }
    
    // utility to mount a disk based filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/volume/portworx/portworx_util.go

    	}
    	return devicePath, nil
    }
    
    // DetachVolume detaches a Portworx Volume
    func (util *portworxVolumeUtil) DetachVolume(u *portworxVolumeUnmounter) error {
    	driver, err := util.getLocalPortworxDriver(u.plugin.host)
    	if err != nil || driver == nil {
    		klog.Errorf("Failed to get portworx driver. Err: %v", err)
    		return err
    	}
    
    	err = driver.Detach(u.volName, false /*doNotForceDetach*/)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. pkg/registry/storage/volumeattachment/strategy_test.go

    					Name: "foo",
    				},
    				Spec: storage.VolumeAttachmentSpec{
    					Attacher: "valid-attacher",
    					Source: storage.VolumeAttachmentSource{
    						PersistentVolumeName: &invalidPVName,
    					},
    					NodeName: "valid-node",
    				},
    			},
    			true,
    		},
    		{
    			"invalid attacher name",
    			&storage.VolumeAttachment{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. pkg/volume/fc/disk_manager.go

    	MakeGlobalVDPDName(disk fcDisk) string
    	// Attaches the disk to the kubelet's host machine.
    	AttachDisk(b fcDiskMounter) (string, error)
    	// Detaches the disk from the kubelet's host machine.
    	DetachDisk(disk fcDiskUnmounter, devicePath string) error
    	// Detaches the block disk from the kubelet's host machine.
    	DetachBlockFCDisk(disk fcDiskUnmapper, mntPath, devicePath string) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation_test.go

    	old.Spec.Source = storage.VolumeAttachmentSource{}
    	old.Spec.Source.PersistentVolumeName = &volumeName
    
    	errorCases := []storage.VolumeAttachment{{
    		// change attacher
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec: storage.VolumeAttachmentSpec{
    			Attacher: "another-attacher",
    			Source: storage.VolumeAttachmentSource{
    				PersistentVolumeName: &volumeName,
    			},
    			NodeName: "mynode",
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
            this.terminal = terminal;
        }
    
        public boolean isTerminal() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    	fs.BoolVar(&o.DisableAttachDetachReconcilerSync, "disable-attach-detach-reconcile-sync", false, "Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. docs/pt/docs/advanced/templates.md

    {!../../../docs_src/templates/static/styles.css!}
    ```
    
    E como você está usando `StaticFiles`, este arquivo CSS será automaticamente servido pela sua aplicação FastAPI na URL `/static/styles.css`.
    
    ## Mais detalhes
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 28 04:05:17 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. docs/sts/client_grants/__init__.py

            """
            Search for credentials with client_grants
            """
            if self.cid is not None:
                fetcher = self._create_credentials_fetcher()
                return RefreshableCredentials.create_from_metadata(
                    metadata=fetcher(),
                    refresh_using=fetcher,
                    method=self.METHOD,
                )
            else:
                return None
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
Back to top