Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 598 for Initial (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

         */
        protected void discardValue() {
            assertCanMutate();
            if (isDefaultConvention()) {
                // special case: discarding value without a convention restores the initial state
                state.implicitValue(getDefaultConvention());
                value = getDefaultValue();
            } else {
                // otherwise, the convention will become the new value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                        implementation project(":producer")
                    }
                }
            """
    
            when:
            withBuildCache().run ":consumer:resolve", "-DproducerContent=initial"
            then:
            executedAndNotSkipped(":consumer:resolve")
    
            result.groupedOutput.transform("MakeGreen")
                .assertOutputContains("processing [producer.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_ppc64le.s

    	MOVD	$80,off80
    	MOVD	$96,off96
    	MOVD	$112,off112
    	MOVD	$0,R15
    
    	MOVD	R3,R10	// save initial crc
    
    	NOR	R3,R3,R3  // ^crc
    	MOVWZ	R3,R3	// 32 bits
    	VXOR	zeroes,zeroes,zeroes  // clear the V reg
    	VSPLTISW $-1,V0
    	VSLDOI	$4,V29,V0,mask_32bit
    	VSLDOI	$8,V29,V0,mask_64bit
    
    	VXOR	V8,V8,V8
    	MTVSRD	R3,VS40	// crc initial value VS40 = V8
    
    #ifdef REFLECT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/status_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:        "ingress",
    			Namespace:   "default",
    			Annotations: map[string]string{annotation.IoKubernetesIngressClass.Name: "istio"},
    		},
    	})
    
    	// Test initial state
    	assert.EventuallyEqual(t, getIPs(ing, "ingress", "default"), []string{serviceIP})
    
    	// Update service IP
    	updated := ingressService.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    // to convert to unsafe.Pointer.
    func isSafeArith(info *types.Info, x ast.Expr) bool {
    	switch x := astutil.Unparen(x).(type) {
    	case *ast.CallExpr:
    		// Base case: initial conversion from unsafe.Pointer to uintptr.
    		return len(x.Args) == 1 &&
    			hasBasicType(info, x.Fun, types.Uintptr) &&
    			hasBasicType(info, x.Args[0], types.UnsafePointer)
    
    	case *ast.BinaryExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/go/ast/scope.go

    type Scope struct {
    	Outer   *Scope
    	Objects map[string]*Object
    }
    
    // NewScope creates a new scope nested in the outer scope.
    func NewScope(outer *Scope) *Scope {
    	const n = 4 // initial scope capacity
    	return &Scope{outer, make(map[string]*Object, n)}
    }
    
    // Lookup returns the object with the given name if it is
    // found in scope s, otherwise it returns nil. Outer scopes
    // are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/net/interface_windows.go

    // multiple IP addresses including unicast, anycast and multicast
    // addresses.
    func adapterAddresses() ([]*windows.IpAdapterAddresses, error) {
    	var b []byte
    	l := uint32(15000) // recommended initial size
    	for {
    		b = make([]byte, l)
    		const flags = windows.GAA_FLAG_INCLUDE_PREFIX | windows.GAA_FLAG_INCLUDE_GATEWAYS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    	//     then salt is the empty string.
    	//
    	// 5.  Let
    	//       M' = (0x)00 00 00 00 00 00 00 00 || mHash || salt;
    	//
    	//     M' is an octet string of length 8 + hLen + sLen with eight
    	//     initial zero octets.
    	//
    	// 6.  Let H = Hash(M'), an octet string of length hLen.
    
    	var prefix [8]byte
    
    	hash.Write(prefix[:])
    	hash.Write(mHash)
    	hash.Write(salt)
    
    	h = hash.Sum(h[:0])
    	hash.Reset()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/delete_test.go

    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    // Test single call to syncVolume, expecting recycling to happen.
    // 1. Fill in the controller with initial data
    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestDeleteSync(t *testing.T) {
    	const gceDriver = "pd.csi.storage.gke.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    				t.Fatal(err)
    			}
    
    			t.Log(time.Now().UTC().Format(time.RFC3339))
    			work, _ := s.LookupEnv("WORK")
    			t.Logf("$WORK=%s", work)
    
    			// With -testsum, if a go.mod file is present in the test's initial
    			// working directory, run 'go mod tidy'.
    			if *testSum != "" {
    				if updateSum(t, engine, s, a) {
    					defer func() {
    						if t.Failed() {
    							return
    						}
    						data := txtar.Format(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top