Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for 12352 (0.19 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	CNTTZDM R2, R3, R1                      // 7c411c76
    	DCFFIXQQ V1, F2                         // fc400fc4
    	DCTFIXQQ F2, V3                         // fc6117c4
    	LXVKQ $0, VS33                          // f03f02d1
    	LXVP 12352(R5), VS6                     // 18c53040
    	LXVPX (R1)(R2), VS4                     // 7c820a9a
    	LXVRBX (R1)(R2), VS4                    // 7c82081a
    	LXVRDX (R1)(R2), VS4                    // 7c8208da
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+3864(SB)/8,$0x00000000231f091c
    
    	/* x^13376 mod p(x), x^13312 mod p(x) */
    DATA ·IEEEConst+3872(SB)/8,$0x00000000153e9fb2
    DATA ·IEEEConst+3880(SB)/8,$0x000000007d4439f2
    
    	/* x^12352 mod p(x), x^12288 mod p(x) */
    DATA ·IEEEConst+3888(SB)/8,$0x000000002b1f7b60
    DATA ·IEEEConst+3896(SB)/8,$0x000000017e221efc
    
    	/* x^11328 mod p(x), x^11264 mod p(x) */
    DATA ·IEEEConst+3904(SB)/8,$0x00000000b1dba570
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. fuzzing/fuzzingserver-expected.txt

    "12.2.9 UNIMPLEMENTED"
    "12.3.1 UNIMPLEMENTED"
    "12.3.10 UNIMPLEMENTED"
    "12.3.11 UNIMPLEMENTED"
    "12.3.12 UNIMPLEMENTED"
    "12.3.13 UNIMPLEMENTED"
    "12.3.14 UNIMPLEMENTED"
    "12.3.15 UNIMPLEMENTED"
    "12.3.16 UNIMPLEMENTED"
    "12.3.17 UNIMPLEMENTED"
    "12.3.18 UNIMPLEMENTED"
    "12.3.2 UNIMPLEMENTED"
    "12.3.3 UNIMPLEMENTED"
    "12.3.4 UNIMPLEMENTED"
    "12.3.5 UNIMPLEMENTED"
    "12.3.6 UNIMPLEMENTED"
    "12.3.7 UNIMPLEMENTED"
    "12.3.8 UNIMPLEMENTED"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileCollectionFingerprintSerializerTest.groovy

                "/2": new DefaultFileSystemLocationFingerprint('/2', FileType.RegularFile, TestHashCodes.hashCodeFrom(5678)),
                "/1": new DefaultFileSystemLocationFingerprint('1', FileType.Missing, FileSystemLocationFingerprint.MISSING_FILE_SIGNATURE),
                ImmutableMultimap.of(
                    "/3", TestHashCodes.hashCodeFrom(1234),
                    "/2", TestHashCodes.hashCodeFrom(5678),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. test/abi/defer_recover_results.go

    // setting the result registers correctly).
    
    package main
    
    type S struct {
    	x uint8
    	y uint16
    	z uint32
    	w float64
    }
    
    var a0, b0, c0, d0 = 10, "hello", S{1, 2, 3, 4}, [2]int{111, 222}
    
    //go:noinline
    //go:registerparams
    func F() (a int, b string, _ int, c S, d [2]int) {
    	a, b, c, d = a0, b0, c0, d0
    	defer func() { recover() }()
    	panic("XXX")
    	return
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 06 20:22:15 UTC 2021
    - 800 bytes
    - Viewed (0)
  6. pkg/kube/krt/index_test.go

    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.5"},
    	}
    	pc.CreateOrUpdateStatus(pod2)
    	tt.WaitUnordered("add/namespace/name2")
    	assert.Equal(t, fetchSorted("1.2.3.5"), []SimplePod{
    		{NewNamed(pod), Labeled{}, "1.2.3.5"},
    		{NewNamed(pod2), Labeled{}, "1.2.3.5"},
    	})
    
    	pc.Delete(pod.Name, pod.Namespace)
    	pc.Delete(pod2.Name, pod2.Namespace)
    	tt.WaitUnordered("delete/namespace/name", "delete/namespace/name2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2}, 3, new byte[] {2, 1});
    
        testRotate(new byte[] {1, 2, 3}, -5, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, -4, new byte[] {2, 3, 1});
        testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3});
        testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/SubVersionSelectorTest.groovy

            expect:
            accept("1+", "11")
            accept("1.+", "1.2")
            accept("1.2.3+", "1.2.3.11")
            !accept("1+", "2")
            !accept("1.+", "11")
            !accept("1.2.3+", "1.2")
        }
    
        def "'+' is a valid selector which accepts everything"() {
            expect:
            accept("+", "11")
            accept("+", "1.2")
            accept("+", "1.2.3.11")
            accept("+", "2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

        }
    
        def "always returns default for select question"() {
            expect:
            userInputHandler.selectOption('Select count', [1, 2, 3], 2) == 2
        }
    
        def "returns first option when no default"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .ask() == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulatorTest.groovy

            // a -> b -> c
            accumulator.addClass("a", hash, null, [], ["b"], new IntOpenHashSet(1, 2, 3, 5, 8))
            accumulator.addClass("b", hash, null, [], ["c"], new IntOpenHashSet([0, 8]))
            accumulator.addClass("c", hash, null, [], [], new IntOpenHashSet([3, 4]))
    
            expect:
            accumulator.classesToConstants.get('a') == [1, 2, 3, 5, 8] as Set
            accumulator.classesToConstants.get('b') == [0, 8] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top