Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 168 for Concatenates (0.67 sec)

  1. guava/src/com/google/common/primitives/Longs.java

       * 0x1213141516171819L} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
       * 0x18, 0x19}}.
       *
       * <p>If you need to convert and concatenate several values (possibly even of different types),
       * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
       * com.google.common.io.ByteStreams#newDataOutput()} to get a growable buffer.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. src/net/lookup.go

    		if err != nil {
    			return nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		// Multiple strings in one TXT record need to be
    		// concatenated without separator to be consistent
    		// with previous Go resolver.
    		n := 0
    		for _, s := range txt.TXT {
    			n += len(s)
    		}
    		txtJoin := make([]byte, 0, n)
    		for _, s := range txt.TXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		}
    		start = limit
    	}
    
    	return result
    }
    
    // getReordering returns the reordering of lines from a visual index to a
    // logical index for line breaks at the given offsets.
    //
    // Lines are concatenated from left to right. So for example, the fifth
    // character from the left on the third line is
    //
    //	getReordering(linebreaks)[linebreaks[1] + 4]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Ints.java

       * {@code ByteBuffer.allocate(4).putInt(value).array()}. For example, the input value {@code
       * 0x12131415} would yield the byte array {@code {0x12, 0x13, 0x14, 0x15}}.
       *
       * <p>If you need to convert and concatenate several values (possibly even of different types),
       * use a shared {@link java.nio.ByteBuffer} instance, or use {@link
       * com.google.common.io.ByteStreams#newDataOutput()} to get a growable buffer.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          self.assertNotRegex(module_str, r'stablehlo.maximum.*\n.*return')
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'same_scale_op': (
                  'concatenate',
                  'gather',
                  'max_pool',
                  'pad',
                  'reshape',
                  'select',
                  'slice',
                  'transpose',
              ),
          }])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    		return nil, errors.New("x509: trailing data")
    	}
    	return cert, err
    }
    
    // ParseCertificates parses one or more certificates from the given ASN.1 DER
    // data. The certificates must be concatenated with no intermediate padding.
    func ParseCertificates(der []byte) ([]*Certificate, error) {
    	var certs []*Certificate
    	for len(der) > 0 {
    		cert, err := parseCertificate(der)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// can use to identify a specific node
    	ProviderID string
    	// tlsCertFile is the file containing x509 Certificate for HTTPS.  (CA cert,
    	// if any, concatenated after server cert). If tlsCertFile and
    	// tlsPrivateKeyFile are not provided, a self-signed certificate
    	// and key are generated for the public address and saved to the directory
    	// passed to the Kubelet's --cert-dir flag.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #include "gtest/internal/gtest-string.h"
    #include "gtest/internal/gtest-filepath.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Due to C++ preprocessor weirdness, we need double indirection to
    // concatenate two tokens when one of them is __LINE__.  Writing
    //
    //   foo ## __LINE__
    //
    // will result in the token foo__LINE__, instead of foo followed by
    // the current line number.  For more details, see
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer_test.go

    					gcDuration += int64(actualElapsed)
    					bytesAllocatedBlack += actualAllocated
    				}
    
    				// Put together the results, log them, and concatenate them.
    				result := gcCycleResult{
    					cycle:         i + 1,
    					heapLive:      c.HeapMarked(),
    					heapScannable: int64(float64(int64(c.HeapMarked())-bytesAllocatedBlackLast) * cycle.scannableFrac),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #include "gtest/internal/gtest-string.h"
    #include "gtest/internal/gtest-filepath.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Due to C++ preprocessor weirdness, we need double indirection to
    // concatenate two tokens when one of them is __LINE__.  Writing
    //
    //   foo ## __LINE__
    //
    // will result in the token foo__LINE__, instead of foo followed by
    // the current line number.  For more details, see
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top