Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for K2 (0.02 sec)

  1. src/cmd/internal/notsha256/sha256block_amd64.s

    // Round specific constants
    DATA K256<>+0x00(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x04(SB)/4, $0x71374491 // k2
    DATA K256<>+0x08(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x0c(SB)/4, $0xe9b5dba5 // k4
    DATA K256<>+0x10(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x14(SB)/4, $0x71374491 // k2
    DATA K256<>+0x18(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x1c(SB)/4, $0xe9b5dba5 // k4
    
    DATA K256<>+0x20(SB)/4, $0x3956c25b // k5 - k8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
       * {@code k.equals(k2)} implies that {@code k2} is also of type {@code K}. Using a key type for
       * which this may not hold, such as {@code ArrayList}, may risk a {@code ClassCastException} when
       * calling methods on the resulting map view.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
       * {@code k.equals(k2)} implies that {@code k2} is also of type {@code K}. Using a key type for
       * which this may not hold, such as {@code ArrayList}, may risk a {@code ClassCastException} when
       * calling methods on the resulting map view.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-X25519

    00000270  41 9c 4b b6 34 10 a6 8f  f8 3c 47 2f 39 75 86 03  |A.K.4....<G/9u..|
    00000280  60 35 06 84 f2 96 35 39  0a c2 3e cb 3c fa d8 fa  |`5....59..>.<...|
    00000290  66 3c 9c c9 6b 32 3f ea  bd 5d 4d 75 e5 4b 88 93  |f<..k2?..]Mu.K..|
    000002a0  1f 47 73 3b 55 8a e0 e4  7e e5 2f dc 2d d4 f6 c0  |.Gs;U...~./.-...|
    000002b0  3a b4 e4 72 b2 5a 0d d1  10 28 3f 61 73 96 94 d0  |:..r.Z...(?as...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    		}
    	}
    	collectmachosyms(ctxt)
    	sort.Slice(sortsym[:nsortsym], func(i, j int) bool {
    		s1 := sortsym[i]
    		s2 := sortsym[j]
    		k1 := symkind(ldr, s1)
    		k2 := symkind(ldr, s2)
    		if k1 != k2 {
    			return k1 < k2
    		}
    		return ldr.SymExtname(s1) < ldr.SymExtname(s2) // Note: unnamed symbols are not added in collectmachosyms
    	})
    	for i, s := range sortsym {
    		ldr.SetSymDynid(s, int32(i))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/internal/godebug/godebug.go

    	cache.Range(func(name, s any) bool {
    		if !did[name.(string)] {
    			s.(*setting).value.Store(&empty)
    		}
    		return true
    	})
    }
    
    // parse parses the GODEBUG setting string s,
    // which has the form k=v,k2=v2,k3=v3.
    // Later settings override earlier ones.
    // Parse only updates settings k=v for which did[k] = false.
    // It also sets did[k] = true for settings that it updates.
    // Each value v can also have the form v#pattern,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        k1Creator.setString(1, "C")
        k1Creator.commit()
        val k2Creator = cache.edit("k2")!!
        k2Creator.setString(0, "DEF")
        k2Creator.setString(1, "G")
        k2Creator.commit()
        val k1Snapshot = cache["k1"]!!
        k1Snapshot.close()
        cache.close()
        assertJournalEquals("DIRTY k1", "CLEAN k1 2 1", "DIRTY k2", "CLEAN k2 3 1", "READ k1")
      }
    
      @ParameterizedTest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    namespace gtest_internal {
    
    // SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the
    // first k fields of t1 equals the first k fields of t2.
    // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if
    // k1 != k2.
    template <int kSize1, int kSize2>
    struct SameSizeTuplePrefixComparator;
    
    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    // without UseNumber
    var ifaceNumAsFloat64 = map[string]any{
    	"k1": float64(1),
    	"k2": "s",
    	"k3": []any{float64(1), float64(2.0), float64(3e-3)},
    	"k4": map[string]any{"kk1": "s", "kk2": float64(2)},
    }
    
    var ifaceNumAsNumber = map[string]any{
    	"k1": Number("1"),
    	"k2": "s",
    	"k3": []any{Number("1"), Number("2.0"), Number("3e-3")},
    	"k4": map[string]any{"kk1": "s", "kk2": Number("2")},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    namespace gtest_internal {
    
    // SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the
    // first k fields of t1 equals the first k fields of t2.
    // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if
    // k1 != k2.
    template <int kSize1, int kSize2>
    struct SameSizeTuplePrefixComparator;
    
    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top