Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for Ufour (0.19 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

                <version>version-three</version>
                <type>jar</type>
            </dependency>
            <dependency>
                <groupId>group-four</groupId>
                <artifactId>artifact-four</artifactId>
                <version>version-four</version>
                <type>ejb-client</type>
            </dependency>
        </dependencies>
    </project>
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            changes(NORMALIZED, [
                "new/one": fingerprint("one"),
                "new/two": fingerprint("two"),
                "new/four": fingerprint("four")
            ], [
                "old/one": fingerprint("one"),
                "old/three": fingerprint("three"),
                "old/four": fingerprint("four")
            ]) == [removed("old/three": "three"), added("new/two": "two")]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/Utf8Test.java

        testBytes(3, EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT);
      }
    
      /**
       * Tests that round tripping of a sample of four byte permutations work. All permutations are
       * prohibitively expensive to test for automated runs. This method tests specific four-byte cases.
       */
      public void testIsWellFormed_4BytesSamples() {
        // Valid 4 byte.
        assertWellFormed(0xF0, 0xA4, 0xAD, 0xA2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

            if (!decodeIpv4Suffix(input, groupOffset, limit, address, b - 2)) return null
            b += 2 // We rewound two bytes and then added four.
            break
          } else {
            return null // Wrong delimiter.
          }
        }
    
        // Read a group, one to four hex digits.
        var value = 0
        groupOffset = i
        while (i < limit) {
          val hexDigit = input[i].parseHexDigit()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

      // Create the sample tensor to convert.
      Tensor tensor(DT_STRING, TensorShape({1, 2, 2, 1}));
      EXPECT_EQ(4, tensor.NumElements());
      auto Tt = tensor.flat<tstring>();
      Tt.setValues({"one", "two", "three", "four"});
      auto value_or_status = ConvertTensor(tensor, &b);
      ASSERT_TRUE(value_or_status.ok());
      auto attr = value_or_status.value();
    
      EXPECT_TRUE(mlir::isa<mlir::DenseStringElementsAttr>(attr));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256.go

    	table[0].Set(q)
    	for i := 1; i < 15; i += 2 {
    		table[i].Double(table[i/2])
    		table[i+1].Add(table[i], q)
    	}
    
    	// Instead of doing the classic double-and-add chain, we do it with a
    	// four-bit window: we double four times, and then add [0-15]P.
    	t := NewP256Point()
    	p.Set(NewP256Point())
    	for i, byte := range scalar {
    		// No need to double on the first iteration, as p is the identity at
    		// this point, and [N]∞ = ∞.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/crypto/cipher/gcm.go

    	// irreducible polynomial so the result has to be reduced. The
    	// irreducible polynomial is 1+x+x^2+x^7+x^128. We can subtract that to
    	// eliminate the term at x^128 which also means subtracting the other
    	// four terms. In characteristic 2 fields, subtraction == addition ==
    	// XOR.
    	if msbSet {
    		double.low ^= 0xe100000000000000
    	}
    
    	return
    }
    
    var gcmReductionTable = []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TableCollectionTest.java

              supportsPut,
              supportsRemove,
              supportsClear,
              supportsIteratorRemove);
        }
    
        @Override
        protected String getKeyNotInPopulatedMap() {
          return "four";
        }
    
        @Override
        protected Integer getValueNotInPopulatedMap() {
          return 4;
        }
      }
    
      abstract static class RowTests extends MapTests {
        RowTests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/controller/repair_test.go

    			Spec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{{NodePort: 201}},
    			},
    		},
    		&corev1.Service{ // empty, ignored
    			ObjectMeta: metav1.ObjectMeta{Namespace: "four", Name: "four"},
    			Spec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{{}},
    			},
    		},
    		&corev1.Service{ // duplicate, dropped
    			ObjectMeta: metav1.ObjectMeta{Namespace: "five", Name: "five"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/generate.go

    	table[0].Set(q)
    	for i := 1; i < 15; i += 2 {
    		table[i].Double(table[i/2])
    		table[i+1].Add(table[i], q)
    	}
    
    	// Instead of doing the classic double-and-add chain, we do it with a
    	// four-bit window: we double four times, and then add [0-15]P.
    	t := New{{.P}}Point()
    	p.Set(New{{.P}}Point())
    	for i, byte := range scalar {
    		// No need to double on the first iteration, as p is the identity at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top