Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for Concatenates (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.TLSCertFile, "tls-cert-file", c.TLSCertFile, ""+
    		"File containing x509 Certificate used for serving HTTPS (with intermediate certs, if any, concatenated after server cert). "+
    		"If --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key "+
    		"are generated for the public address and saved to the directory passed to --cert-dir.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                          ArrayRef<int32_t> indices) {
      return llvm::any_of(
          indices, [&](int i) { return !subgraph.tensors.at(i)->name.empty(); });
    }
    
    // Given a list of tensor indices, returns a string of concatenated tensor names
    // wrapped in a NamedAttribute.
    mlir::NamedAttribute BuildTFEntryFunctionAttribute(
        const tflite::SubGraphT& subgraph, Builder* builder,
        const std::string& name, ArrayRef<int32_t> indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    int); public static String right(String, int); public static String mid(String, int, int); public static String[] split(String); public static String[] split(String, String); public static String[] split(String, String, int); public static String concatenate(Object[]); public static String join(Object[], String); public static String join(java.util.Iterator, String); public static String replaceOnce(String, char, char); public static String replace(String, char, char); public static String replace(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    	if err != nil {
    		t.Fatal("exchange failed:", err)
    	}
    }
    
    // Issue 27763: verify that two strings in one TXT record are concatenated.
    func TestTXTRecordTwoStrings(t *testing.T) {
    	fake := fakeDNSServer{
    		rh: func(n, _ string, q dnsmessage.Message, _ time.Time) (dnsmessage.Message, error) {
    			r := dnsmessage.Message{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        std::shared_ptr<AbstractStackTrace> stack_trace = node.GetStackTrace();
    
        // Prefer stack traces if available, fallback to debug info if not, and then
        // finally to just name. Older versions of debug info concatenated `@` onto
        // the node name for the default graph, so we check both locations.
        if (stack_trace != nullptr) {
        } else if (stack_traces_.contains(name_for_name_loc)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	if other.isEmpty() {
    		return
    	}
    
    	// Reparent everything in other to list.
    	for s := other.first; s != nil; s = s.next {
    		s.list = list
    	}
    
    	// Concatenate the lists.
    	if list.isEmpty() {
    		*list = *other
    	} else {
    		// Neither list is empty. Put other before list.
    		other.last.next = list.first
    		list.first.prev = other.last
    		list.first = other.first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto concat_result_type = RankedTensorType::get(
          {static_cast<int32_t>(
               dot_dimensions_info.batch_dimensions().AxesArray().size()) +
           2},
          builder.getIntegerType(32));
      // Concatenate the batch dimensions, flattened out dimension and flattened
      // contracting dimension.
      return builder.create<TF::ConcatOp>(
          concat_result_type,
          builder.create<TF::ConstOp>(builder.getI32IntegerAttr(0)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top