Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for 152 (0.1 sec)

  1. src/math/bits/make_examples.go

    		},
    		{
    			name: "RotateLeft",
    			in:   15,
    			out:  [4]any{bits.RotateLeft8(15, 2), bits.RotateLeft16(15, 2), bits.RotateLeft32(15, 2), bits.RotateLeft64(15, 2)},
    			out2: [4]any{bits.RotateLeft8(15, -2), bits.RotateLeft16(15, -2), bits.RotateLeft32(15, -2), bits.RotateLeft64(15, -2)},
    		},
    		{
    			name: "Reverse",
    			in:   19,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/crypto/des/cipher.go

    	for i := 0; i < 8; i++ {
    		left, right = feistel(left, right, c.cipher3.subkeys[15-2*i], c.cipher3.subkeys[15-(2*i+1)])
    	}
    	for i := 0; i < 8; i++ {
    		right, left = feistel(right, left, c.cipher2.subkeys[2*i], c.cipher2.subkeys[2*i+1])
    	}
    	for i := 0; i < 8; i++ {
    		left, right = feistel(left, right, c.cipher1.subkeys[15-2*i], c.cipher1.subkeys[15-(2*i+1)])
    	}
    
    	left = (left << 31) | (left >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/toolchain/RequirementMatcherFactoryTest.java

         */
        @Test
        void testCreateVersionMatcher() {
            RequirementMatcher matcher;
            matcher = RequirementMatcherFactory.createVersionMatcher("1.5.2");
            assertFalse(matcher.matches("1.5"));
            assertTrue(matcher.matches("1.5.2"));
            assertFalse(matcher.matches("[1.4,1.5)"));
            assertFalse(matcher.matches("[1.5,1.5.2)"));
            assertFalse(matcher.matches("(1.5.2,1.6)"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. pkg/kube/version.go

    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    	clusterVersion, err := client.GetKubernetesVersion()
    	if err != nil {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/devel.usertools/test.requirements.txt

    # Test dependencies for pip tests
    grpcio ~= 1.42.0
    portpicker ~= 1.5.2
    scipy ~= 1.7.3
    jax ~= 0.2.26
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 117 bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/test-requirements.in

    requests-mock==1.5.2...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 21 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    [short] skip
    
    # Control case: without a vendor directory, need117 builds and bad114 doesn't.
    
    go build example.net/need117
    ! go build example.net/bad114
    stderr '^bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    # because we have to guess a uniform version for everything.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/build.gradle.kts

        implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation("org.gradle:test-retry-gradle-plugin:1.5.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 977 bytes
    - Viewed (0)
  9. src/runtime/preempt_riscv64.s

    	MOV X12, 64(X2)
    	MOV X13, 72(X2)
    	MOV X14, 80(X2)
    	MOV X15, 88(X2)
    	MOV X16, 96(X2)
    	MOV X17, 104(X2)
    	MOV X18, 112(X2)
    	MOV X19, 120(X2)
    	MOV X20, 128(X2)
    	MOV X21, 136(X2)
    	MOV X22, 144(X2)
    	MOV X23, 152(X2)
    	MOV X24, 160(X2)
    	MOV X25, 168(X2)
    	MOV X26, 176(X2)
    	MOV X28, 184(X2)
    	MOV X29, 192(X2)
    	MOV X30, 200(X2)
    	MOVD F0, 208(X2)
    	MOVD F1, 216(X2)
    	MOVD F2, 224(X2)
    	MOVD F3, 232(X2)
    	MOVD F4, 240(X2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

        assertEquals(20, multimap.expectedValuesPerKey);
      }
    
      public void testCreateFromIllegalSizes() {
        try {
          ArrayListMultimap.create(15, -2);
          fail();
        } catch (IllegalArgumentException expected) {
        }
    
        try {
          ArrayListMultimap.create(-15, 2);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreateFromHashMultimap() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top