Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for newSpec (2.9 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecActionFactory.java

        }
    
        @Override
        public ExecHandleBuilder newExec() {
            return new DefaultExecHandleBuilder(fileResolver, executor, buildCancellationToken);
        }
    
        @Override
        public JavaExecHandleBuilder newJavaExec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 06:16:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    func ValidatePersistentVolumeClaimUpdate(newPvc, oldPvc *core.PersistentVolumeClaim, opts PersistentVolumeClaimSpecValidationOptions) field.ErrorList {
    	allErrs := ValidateObjectMetaUpdate(&newPvc.ObjectMeta, &oldPvc.ObjectMeta, field.NewPath("metadata"))
    	allErrs = append(allErrs, ValidatePersistentVolumeClaim(newPvc, opts)...)
    	newPvcClone := newPvc.DeepCopy()
    	oldPvcClone := oldPvc.DeepCopy()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            }
    
            def execHandleFactory = Mock(ExecHandleFactory)
            def exec = Mock(ExecHandleBuilder)
            execHandleFactory.newExec() >> exec
            PrintStream output
            exec.setStandardOutput(_ as OutputStream) >> { OutputStream outputStream ->
                output = new PrintStream(outputStream)
                null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    	// Check if this G wants to be preempted and is safe to
    	// preempt.
    	if wantAsyncPreempt(gp) {
    		if ok, newpc := isAsyncSafePoint(gp, ctxt.sigpc(), ctxt.sigsp(), ctxt.siglr()); ok {
    			// Adjust the PC and inject a call to asyncPreempt.
    			ctxt.pushCall(abi.FuncPCABI0(asyncPreempt), newpc)
    		}
    	}
    
    	// Acknowledge the preemption.
    	gp.m.preemptGen.Add(1)
    	gp.m.signalPending.Store(0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	bigMostNegative = big.NewInt(mostNegative)
    )
    
    func dec(i int64, exponent int) infDecAmount {
    	// See the below test-- scale is the negative of an exponent.
    	return infDecAmount{inf.NewDec(i, inf.Scale(-exponent))}
    }
    
    func bigDec(i *big.Int, exponent int) infDecAmount {
    	// See the below test-- scale is the negative of an exponent.
    	return infDecAmount{inf.NewDecBig(i, inf.Scale(-exponent))}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    		syncPeriod:          syncPeriod,
    		nftables:            nft,
    		masqueradeAll:       masqueradeAll,
    		masqueradeMark:      masqueradeMark,
    		conntrack:           conntrack.NewExec(utilexec.New()),
    		localDetector:       localDetector,
    		hostname:            hostname,
    		nodeIP:              nodeIP,
    		recorder:            recorder,
    		serviceHealthServer: serviceHealthServer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		syncPeriod:               syncPeriod,
    		iptables:                 ipt,
    		masqueradeAll:            masqueradeAll,
    		masqueradeMark:           masqueradeMark,
    		conntrack:                conntrack.NewExec(exec),
    		nfacct:                   nfacctRunner,
    		localDetector:            localDetector,
    		hostname:                 hostname,
    		nodeIP:                   nodeIP,
    		recorder:                 recorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    		excludeCIDRs:          parsedExcludeCIDRs,
    		iptables:              ipt,
    		masqueradeAll:         masqueradeAll,
    		masqueradeMark:        masqueradeMark,
    		conntrack:             conntrack.NewExec(exec),
    		localDetector:         localDetector,
    		hostname:              hostname,
    		nodeIP:                nodeIP,
    		recorder:              recorder,
    		serviceHealthServer:   serviceHealthServer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return newPEs;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  10. pkg/apis/core/validation/validation_test.go

    		},
    		"status-update-with-old-pvc-valid-resourcestatus-newpvc-invalid-recovery-disabled": {
    			isExpectedFailure:          true,
    			oldClaim:                   validResizeStatusPVC,
    			newClaim:                   invalidResizeStatusPVC,
    			enableRecoverFromExpansion: false,
    		},
    		"status-update-with-old-pvc-valid-allocatedResource-newpvc-invalid-recovery-disabled": {
    			isExpectedFailure:          true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top