Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 259 for unbounded (0.68 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    				}
    			}
    			return true
    		}
    	}
    
    	// Unless we have exact unification, neither x nor y are interfaces now.
    	// Except for unbound type parameters (see below), x and y must be structurally
    	// equivalent to unify.
    
    	// If we get here and x or y is a type parameter, they are unbound
    	// (not recorded with the unifier).
    	// Ensure that if we have at least one type parameter, it is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    				}
    			}
    			return true
    		}
    	}
    
    	// Unless we have exact unification, neither x nor y are interfaces now.
    	// Except for unbound type parameters (see below), x and y must be structurally
    	// equivalent to unify.
    
    	// If we get here and x or y is a type parameter, they are unbound
    	// (not recorded with the unifier).
    	// Ensure that if we have at least one type parameter, it is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundModelRulesException.java

    import org.gradle.model.internal.report.unbound.UnboundRule;
    import org.gradle.model.internal.report.unbound.UnboundRulesReporter;
    
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.util.List;
    
    public class UnboundModelRulesException extends GradleException {
    
        private static final String MESSAGE = "The following model rules could not be applied due to unbound inputs and/or subjects:";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemTest.groovy

    import org.gradle.internal.deprecation.Documentation
    import org.gradle.internal.operations.OperationIdentifier
    import spock.lang.Specification
    
    class DefaultProblemTest extends Specification {
        def "unbound builder result is equal to original"() {
            def additionalData = Mock(AdditionalData)
            def problem = createTestProblem(severity, additionalData)
    
            def newProblem = problem.toBuilder().build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	if err != nil {
    		return err
    	}
    	oldptr := uintptr(unsafe.Pointer(oldp))
    
    	var r0 uintptr
    	var e syscall.ErrorString
    
    	// bind(2) man page: If name is zero, everything bound or mounted upon old is unbound or unmounted.
    	if name == "" {
    		r0, _, e = Syscall(SYS_UNMOUNT, _zero, oldptr, 0)
    	} else {
    		namep, err := BytePtrFromString(name)
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    	emptyPod            = st.MakePod().Obj()
    	unboundPVCPod       = st.MakePod().PVC("unboundPVC").Obj()
    	// Different pod than unboundPVCPod, but using the same unbound PVC
    	unboundPVCPod2 = st.MakePod().PVC("unboundPVC").Obj()
    	// pod with unbound PVC that's different to unboundPVC
    	anotherUnboundPVCPod = st.MakePod().PVC("anotherUnboundPVC").Obj()
    )
    
    func TestEphemeralLimits(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/report/unbound/UnboundRulesReporterTest.groovy

     */
    
    package org.gradle.model.internal.report.unbound
    
    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    
    class UnboundRulesReporterTest extends Specification {
    
        def output = new StringWriter()
    
        def reporter = new UnboundRulesReporter(new PrintWriter(output), "> ")
    
        def "reports on unbound rules"() {
            when:
            reporter.reportOn([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    type Reconciler interface {
    	// Starts running the reconciliation loop which executes periodically, checks
    	// if volumes that should be mounted are mounted and volumes that should
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager.go

    	WaitForAttachAndMount(ctx context.Context, pod *v1.Pod) error
    
    	// WaitForUnmount processes the volumes referenced in the specified
    	// pod and blocks until they are all unmounted (reflected in the actual
    	// state of the world).
    	// An error is returned if all volumes are not unmounted within
    	// the duration defined in podAttachAndMountTimeout.
    	WaitForUnmount(ctx context.Context, pod *v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top