Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 226 for 1__2345 (0.1 sec)

  1. src/net/listen_test.go

    	{"udp", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff02::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff04::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff05::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff08::114"), Port: 12345}},
    	{"udp", &UDPAddr{IP: ParseIP("ff0e::114"), Port: 12345}},
    
    	{"udp6", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. test/ken/shift.go

    	 */
    	pass = "con";	// constant part
    
    	testi( int(1234) <<    0, 0,0,0);
    	testi( int(1234) >>    0, 0,0,1);
    	testi( int(1234) <<    5, 0,1,0);
    	testi( int(1234) >>    5, 0,1,1);
    
    	testi(int(-1234) <<    0, 1,0,0);
    	testi(int(-1234) >>    0, 1,0,1);
    	testi(int(-1234) <<    5, 1,1,0);
    	testi(int(-1234) >>    5, 1,1,1);
    
    	testu(uint(5678) <<    0, 2,0,0);
    	testu(uint(5678) >>    0, 2,0,1);
    	testu(uint(5678) <<    5, 2,1,0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

            file("build/libs1").assertHasDescendants("test-1.3.jar.txt", "test2-2.3.jar.txt")
            file("build/libs1/test-1.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
            file("build/libs1/test2-2.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
    
            and:
            outputContains("variants: [{artifactType=secondCount, org.gradle.status=release}, {artifactType=secondCount, org.gradle.status=release}]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

            long minimumTimestamp = (System.currentTimeMillis() / 1000 * 1000) - 2000
            def file1 = rootDir.createFile("a/b/1.txt")
            file1 << '12345'
            def file2 = rootDir.createFile("a/b/2.txt")
            file2 << '12345'
            def file3 = rootDir.createFile("a/b/3.txt")
            file3 << '12345'
            def fileTree = new DirectoryFileTree(rootDir, new PatternSet(), TestFiles.fileSystem(), false)
            def visitedFiles = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/msan3.go

    int f(void) __attribute__ ((weak));
    
    int f() {
      int i;
      int *p = GoFn(&i);
      if (*p != 12345)
        return 0;
      return 1;
    }
    */
    import "C"
    
    //export GoFn
    func GoFn(p *C.int) *C.int {
    	*p = C.int(12345)
    	return p
    }
    
    func main() {
    	if r := C.f(); r != 1 {
    		panic(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 552 bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            hasher.putNull()
            def hash = hasher.hash()
            hash != Hashing.hashString("abc")
        }
    
        def 'hash collision for bytes'() {
            def left = [[1, 2, 3], [4, 5]]
            def right = [[1, 2], [3, 4, 5]]
            expect:
            hashKey(left) != hashKey(right)
        }
    
        def 'hash collision for strings'() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. security/pkg/k8s/tokenreview/k8sauthn_test.go

    						Extra: map[string]authenticationv1.ExtraValue{
    							PodNameKey: []string{"some-pod"},
    							PodUIDKey:  []string{"12345"},
    						},
    					},
    				},
    			},
    			expectedResult: security.KubernetesInfo{
    				PodNamespace:      "default",
    				PodServiceAccount: "example-pod-sa",
    				PodUID:            "12345",
    				PodName:           "some-pod",
    			},
    		},
    	}
    	for _, tc := range testCases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. test/stringrange.go

    			ok = false
    		}
    		offset += size
    		cnum++
    	}
    	if i != len(s)-1 {
    		fmt.Println("after loop i is", i, "not", len(s)-1)
    		ok = false
    	}
    
    	i = 12345
    	c = 23456
    	for i, c = range "" {
    	}
    	if i != 12345 {
    		fmt.Println("range empty string assigned to index:", i)
    		ok = false
    	}
    	if c != 23456 {
    		fmt.Println("range empty string assigned to value:", c)
    		ok = false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 08 21:01:23 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/operation_test.go

    	}
    
    	// AllocateNext with a previously used dry run operation
    	op = StartOperation(r, true)
    	_ = op.Allocate(12345)
    	port, err = op.AllocateNext()
    	if port == 0 {
    		t.Errorf("expected non zero port but got: %v", port)
    	}
    	if port == 12345 {
    		t.Errorf("expected port not to be 12345 but got %v", port)
    	}
    	if err != nil {
    		t.Errorf("expected no error but got: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 15 23:44:12 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util_test.go

    			Annotations: map[string]string{
    				v1.ServiceAccountNameKey: "default",
    				v1.ServiceAccountUIDKey:  "12345",
    			},
    		},
    		Type: v1.SecretTypeOpaque,
    	}
    
    	saIns := &v1.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "default",
    			UID:             "12345",
    			Namespace:       "default",
    			ResourceVersion: "1",
    		},
    	}
    
    	saInsNameNotEqual := &v1.ServiceAccount{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top