Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for Concatenates (0.35 sec)

  1. android/guava/src/com/google/common/hash/Hasher.java

     * }</pre>
     *
     * <p>If you wish to avoid this, you should either prepend or append the size of each chunk. Keep in
     * mind that when dealing with char sequences, the encoded form of two concatenated char sequences
     * is not equivalent to the concatenation of their encoded form. Therefore, {@link
     * #putString(CharSequence, Charset)} should only be used consistently with <i>complete</i>
     * sequences and not broken into chunks.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. src/crypto/x509/root_unix_test.go

    	if g, w := len(certDirs), len(rootPEMs); g != w {
    		t.Fatalf("Failed sanity check: len(certsDir)=%d is not equal to len(rootsPEMS)=%d", g, w)
    	}
    
    	// Now finally concatenate them with a colon.
    	colonConcatCertDirs := strings.Join(certDirs, ":")
    	os.Setenv(certDirEnv, colonConcatCertDirs)
    	gotPool, err := loadSystemRoots()
    	if err != nil {
    		t.Fatalf("Failed to load system roots: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hasher.java

     * }</pre>
     *
     * <p>If you wish to avoid this, you should either prepend or append the size of each chunk. Keep in
     * mind that when dealing with char sequences, the encoded form of two concatenated char sequences
     * is not equivalent to the concatenation of their encoded form. Therefore, {@link
     * #putString(CharSequence, Charset)} should only be used consistently with <i>complete</i>
     * sequences and not broken into chunks.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

    package okhttp3.tls.internal.der
    
    import java.math.BigInteger
    import okio.Buffer
    import okio.BufferedSink
    import okio.ByteString
    
    internal class DerWriter(sink: BufferedSink) {
      /** A stack of buffers that will be concatenated once we know the length of each. */
      private val stack = mutableListOf(sink)
    
      /** Type hints scoped to the call stack, manipulated with [pushTypeHint] and [popTypeHint]. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %a2 = tfrt_fallback_async.const_dense_tensor dense<[[3, 3], [3, 3]]> : tensor<2x2xi32>
      %b = tfrt_fallback_async.const_dense_tensor dense<[[1, 1], [1, 1]]> : tensor<2x2xi32>
    
      // Two batch_size=2 batches get concatenated.
      %result_1 = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a1, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
          allowed_batch_sizes = [4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        }
    
        /**
         * Returns a representation of the file path with an alternate extension.  If the file path has no extension,
         * then the provided extension is simply concatenated.  If the file path has an extension, the extension is
         * stripped and replaced with the provided extension.
         *
         * e.g. with a provided extension of ".bar"
         * foo -&gt; foo.bar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/compress/gzip/gzip_test.go

    	}
    
    	n3 := buf.Len()
    	if n2 == n3 {
    		t.Fatal("Flush didn't flush any data")
    	}
    
    	if err := w.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    }
    
    // Multiple gzip files concatenated form a valid gzip file.
    func TestConcat(t *testing.T) {
    	var buf bytes.Buffer
    	w := NewWriter(&buf)
    	w.Write([]byte("hello "))
    	w.Close()
    	w = NewWriter(&buf)
    	w.Write([]byte("world\n"))
    	w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate.go

    	for k, v := range installTree {
    		componentName := string(k)
    		// In cases (like gateways) where multiple instances can exist, concatenate the manifests and apply as one.
    		ym := strings.Join(manifests[k], helm.YAMLSeparator)
    		l.LogAndPrintf("Rendering: %s", componentName)
    		dirName := filepath.Join(outputDir, componentName)
    		if !dryRun {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. test/torture.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Various tests for expressions with high complexity.
    
    package main
    
    // Concatenate 16 4-bit integers into a 64-bit number.
    func concat(s *[16]byte) uint64 {
    	r := (((((((((((((((uint64(s[0])<<4|
    		uint64(s[1]))<<4|
    		uint64(s[2]))<<4|
    		uint64(s[3]))<<4|
    		uint64(s[4]))<<4|
    		uint64(s[5]))<<4|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
Back to top