Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 182 for deutsch (0.16 sec)

  1. pkg/volume/fc/attacher.go

    	// just unmounted.
    	// 2 minutes should be enough within 6 minute force detach timeout.
    	var detachError error
    	err = wait.PollImmediate(10*time.Second, 2*time.Minute, func() (bool, error) {
    		detachError = detacher.manager.DetachDisk(*unMounter, devName)
    		if detachError != nil {
    			klog.V(4).Infof("fc: failed to detach disk %s (%s): %v", devName, deviceMountPath, detachError)
    			return false, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/metrics/metrics.go

    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    const pluginNameNotAvailable = "N/A"
    
    const (
    	// Force detach reason is timeout
    	ForceDetachReasonTimeout = "timeout"
    	// Force detach reason is the node has an out-of-service taint
    	ForceDetachReasonOutOfService = "out-of-service"
    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        }
    
        @Ignore //not yet implemented
        //it may not be easily testable
        void "detach detects when process did not start or died prematurely"() {
            def execHandle = handle().args(args(BrokenApp.class)).build()
    
            when:
            execHandle.start()
            def detachResult = execHandle.detach()
    
            then:
            execHandle.state == ExecHandleState.FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/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: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// spec represents specification of the desired attach/detach volume behavior.
    	// Populated by the Kubernetes system.
    	Spec VolumeAttachmentSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// status represents status of the VolumeAttachment request.
    	// Populated by the entity completing the attach or detach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher.go

    var _ volume.DeviceUnmounter = &csiAttacher{}
    
    func (c *csiAttacher) Detach(volumeName string, nodeName types.NodeName) error {
    	_, ok := c.plugin.host.(volume.KubeletVolumeHost)
    	if ok {
    		return errors.New("detaching volumes from the kubelet is not supported")
    	}
    
    	var attachID string
    	var volID string
    
    	if volumeName == "" {
    		klog.Error(log("detacher.Detach missing value for parameter volumeName"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/vgotest1.txt

    git add LICENSE README.md
    git commit -m 'initial commit'
    git branch -m master
    
    git checkout --detach HEAD
    
    at 2018-02-19T18:10:06-05:00
    mkdir pkg
    echo 'package p // pkg/p.go'
    cp stdout pkg/p.go
    git add pkg/p.go
    git commit -m 'add pkg/p.go'
    git tag v0.0.0
    git tag v1.0.0
    git tag mytag
    
    git checkout --detach HEAD
    
    at 2018-02-19T18:14:23-05:00
    mkdir v2
    echo 'module "github.com/rsc/vgotest1/v2" // root go.mod'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_test.go

    				}
    				t.Log("csiTest.VolumeAll detacher.Detach succeeded for volume", volName)
    
    			} else {
    				t.Log("csiTest.VolumeAll attachable plugin not found for plugin.Detach call, skipping")
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/detacher_test.go

    	defer t.Close()
    
    	plugin, _ := testPlugin(t)
    	plugin.runner = fakeRunner(
    		assertDriverCall(t, notSupportedOutput(), detachCmd,
    			"sdx", "localhost"),
    	)
    
    	d, _ := plugin.NewDetacher()
    	d.Detach("sdx", "localhost")
    }
    
    func TestUnmountDevice(tt *testing.T) {
    	t := harness.For(tt)
    	defer t.Close()
    
    	plugin, rootDir := testPlugin(t)
    	plugin.runner = fakeRunner(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 08 22:44:05 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top