Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,478 for Detached (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/DomainObjectContext.java

        boolean isRootScript();
    
        /**
         * Indicates if the context is plugin resolution
         */
        boolean isPluginContext();
    
        /**
         * Returns true if the context represents a detached state, for
         * example detached dependency resolution
         */
        default boolean isDetachedState() {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is disabled via the command line")
    		} else if rc.syncDuration < time.Second {
    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is set to less than one second via the command line")
    		} else if time.Since(rc.timeOfLastSync) > rc.syncDuration {
    			logger.V(5).Info("Starting reconciling attached volumes still attached")
    			rc.sync()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	// be unmounted are unmounted. If not, it will trigger mount/unmount
    	// operations to rectify.
    	// If attach/detach management is enabled, the manager will also check if
    	// volumes that should be attached are attached and volumes that should
    	// be detached are detached and trigger attach/detach operations as needed.
    	Run(stopCh <-chan struct{})
    
    	// StatesHasBeenSynced returns true only after syncStates process starts to sync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_volumes_test.go

    		util.GetUniquePodName(pod))
    
    	assert.Len(t, podVolumes, 0,
    		"Expected volumes to be unmounted and detached. But some volumes are still mounted: %#v", podVolumes)
    
    	assert.NoError(t, volumetest.VerifyTearDownCallCount(
    		1 /* expectedTearDownCallCount */, testKubelet.volumePlugin))
    
    	// Verify volumes detached and no longer reported as in use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		// which should be attached (+1), the volumes found only in the nodes status should be detached
    		if attachedVolumesNum == 1+extraPodsNum && detachedVolumesNum == nodesNum {
    			break
    		}
    		if i == 10 { // 10 seconds time out
    			t.Fatalf("Waiting for the volumes to attach/detach timed out: attached %d (expected %d); detached %d (%d)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		time.Duration(5*time.Millisecond),
    		func() (bool, error) {
    			for i, detacher := range fakePlugin.GetDetachers() {
    				actualCallCount := detacher.GetDetachCallCount()
    				if actualCallCount == expectedDetachCallCount {
    					return true, nil
    				}
    				t.Logf(
    					"Wrong detacher[%v].GetDetachCallCount(). Expected: <%v> Actual: <%v>. Will try next detacher.",
    					i,
    					expectedDetachCallCount,
    					actualCallCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesExtensionTest.groovy

            thrown(MissingMethodException)
            
            when:
            extension.m2(1, "a")
            
            then:
            thrown(MissingMethodException)
        }
        
        def "can get properties as a detached map"() {
            given:
            extension.p1 = 1
            extension.p2 = 2
            extension.p3 = 3
            
            and:
            def props = extension.properties.sort()
            
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            when:
            execHandle.start()
            execHandle.waitForFinish()
    
            then:
            output.toString().contains "I'm the daemon"
            execHandle.state == ExecHandleState.DETACHED
    
            cleanup:
            execHandle.abort()
        }
    
        @Ignore //not yet implemented
        void "aborts daemon"() {
            def output = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/attacher.go

    	return plugin.NewDetacher()
    }
    
    func (detacher *iscsiDetacher) Detach(volumeName string, nodeName types.NodeName) error {
    	return nil
    }
    
    func (detacher *iscsiDetacher) UnmountDevice(deviceMountPath string) error {
    	unMounter := volumeSpecToUnmounter(detacher.mounter, detacher.host, detacher.plugin)
    	err := detacher.manager.DetachDisk(*unMounter, deviceMountPath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top