Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for var2 (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'c-foo'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	"PInterface": null
    }`
    
    var allValueCompact = stripWhitespace(allValueIndent)
    
    var pallValueIndent = `{
    	"Bool": false,
    	"Int": 0,
    	"Int8": 0,
    	"Int16": 0,
    	"Int32": 0,
    	"Int64": 0,
    	"Uint": 0,
    	"Uint8": 0,
    	"Uint16": 0,
    	"Uint32": 0,
    	"Uint64": 0,
    	"Uintptr": 0,
    	"Float32": 0,
    	"Float64": 0,
    	"bar": "",
    	"bar2": "",
            "IntStr": "0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    func test22906(t *testing.T) {
    	var x1 C.jobject = 0 // Note: 0, not nil. That makes sure we use uintptr for these types.
    	_ = x1
    	var x2 C.jclass = 0
    	_ = x2
    	var x3 C.jthrowable = 0
    	_ = x3
    	var x4 C.jstring = 0
    	_ = x4
    	var x5 C.jarray = 0
    	_ = x5
    	var x6 C.jbooleanArray = 0
    	_ = x6
    	var x7 C.jbyteArray = 0
    	_ = x7
    	var x8 C.jcharArray = 0
    	_ = x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	if e, g := `Get "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Do and empty Method, expected error %q, got %q", e, g)
    	}
    
    	var checkErr error
    	var lastVia []*Request
    	var lastReq *Request
    	c.CheckRedirect = func(req *Request, via []*Request) error {
    		lastReq = req
    		lastVia = via
    		return checkErr
    	}
    	res, err := c.Get(ts.URL)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_ppc64x.s

    	MOVD	n+8(FP), R4
    	MOVW	flags+16(FP), R5
    	SYSCALL	$SYS_madvise
    	MOVW	R3, ret+24(FP)
    	RET
    
    // int64 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT|NOFRAME,$0
    	MOVD	addr+0(FP), R3
    	MOVW	op+8(FP), R4
    	MOVW	val+12(FP), R5
    	MOVD	ts+16(FP), R6
    	MOVD	addr2+24(FP), R7
    	MOVW	val3+32(FP), R8
    	SYSCALL	$SYS_futex
    	BVC	2(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	)
    	medPriorityPodInfo = mustNewPodInfo(
    		st.MakePod().Name("mpp").Namespace("ns2").UID("mppns2").Annotation("annot2", "val2").Priority(mediumPriority).NominatedNodeName("node1").Obj(),
    	)
    	unschedulablePodInfo = mustNewPodInfo(
    		st.MakePod().Name("up").Namespace("ns1").UID("upns1").Annotation("annot2", "val2").Priority(lowPriority).NominatedNodeName("node1").Condition(v1.PodScheduled, v1.ConditionFalse, v1.PodReasonUnschedulable).Obj(),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}{
    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    		},
    	}
    
    	var currentRV string
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    			PermittedEmailAddresses: []string{"******@****.***"},
    			ExcludedEmailAddresses:  []string{".example.com", "example.com"},
    			PermittedURIDomains:     []string{".bar.com", "bar.com"},
    			ExcludedURIDomains:      []string{".bar2.com", "bar2.com"},
    
    			CRLDistributionPoints: []string{"http://crl1.example.com/ca1.crl", "http://crl2.example.com/ca1.crl"},
    
    			ExtraExtensions: []pkix.Extension{
    				{
    					Id:    []int{1, 2, 3, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                    task jar2(type: Jar) {
                        archiveFileName = 'lib2.jar'
                    }
                    tasks.withType(Jar) {
                        destinationDirectory = buildDir
                    }
                    artifacts {
                        compile jar1
                        compile jar2
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_test.go

    	pod.OwnerReferences = nil
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	om.setsIndexer.Add(set)
    	om.setsIndexer.Add(set2)
    	clone := *pod
    	clone.Labels = map[string]string{"foo2": "bar2"}
    	fakeResourceVersion(&clone)
    	ssc.updatePod(logger, &clone, pod)
    	if got, want := ssc.queue.Len(), 2; got != want {
    		t.Errorf("queue.Len() = %v, want %v", got, want)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top