Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for Concatenates (0.27 sec)

  1. pkg/collateral/control.go

    		outFile, err := os.Create(c.OutputDir + "/_" + root.Name())
    		if err != nil {
    			return fmt.Errorf("unable to create zsh completion file: %v", err)
    		}
    		defer func() { _ = outFile.Close() }()
    
    		// Concatenate the head, initialization, generated bash, and tail to the file
    		if _, err = outFile.WriteString(zshInitialization); err != nil {
    			return fmt.Errorf("unable to output zsh initialization: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    func TestReadMIMEHeaderTrimContinued(t *testing.T) {
    	// In this header, \n and \r\n terminated lines are mixed on purpose.
    	// We expect each line to be trimmed (prefix and suffix) before being concatenated.
    	// Keep the spaces as they are.
    	r := reader("" + // for code formatting purpose.
    		"a:\n" +
    		" 0 \r\n" +
    		"b:1 \t\r\n" +
    		"c: 2\r\n" +
    		" 3\t\n" +
    		"  \t 4  \r\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      // 3. filter any non-tensor, non-variable inputs:
      // https://github.com/tensorflow/tensorflow/blob/1c064ab76064c58e54261b805027474885a1534d/tensorflow/python/eager/function.py#L1840-L1841
      // 4. concatenate any captured inputs:
      // https://github.com/tensorflow/tensorflow/blob/1c064ab76064c58e54261b805027474885a1534d/tensorflow/python/eager/function.py#L1912
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

        tf_device::ParallelExecuteOp* new_parallel_execute,
        int* cluster_idx) {
      const int num_cores_per_replica = tpu_devices.front().size();
      // parallel_execute op returns concatenated list of return values of
      // all its regions.
      //
      // TODO(b/149102702): Correctly map inputs to parallel_execute op via
      // identifying xla_sharding op in the cluster_func function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. docs/bn/docs/python-types.md

    ফাংশনটি নিম্নলিখিত কাজ করে:
    
    * `first_name` এবং `last_name` নেয়।
    * প্রতিটির প্রথম অক্ষরকে `title()` ব্যবহার করে বড় হাতের অক্ষরে রূপান্তর করে।
    * তাদেরকে মাঝখানে একটি স্পেস দিয়ে <abbr title="একটার পরে একটা একত্রিত করা">concatenate</abbr> করে।
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### এটি সম্পাদনা করুন
    
    এটি একটি খুব সাধারণ প্রোগ্রাম।
    
    কিন্তু এখন কল্পনা করুন যে আপনি এটি শুরু থেকে লিখছিলেন।
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 15:34:37 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. operator/README.md

    You can see these sources for the compiled-in profiles and charts in the repo under `manifests/`. These profiles and charts are also included in the Istio release tar.
    
    #### Output to dirs
    
    The output of the manifest is concatenated into a single file. To generate a directory hierarchy with subdirectory
    levels representing a child dependency, use the following command:
    
    ```bash
    istioctl manifest generate -o istio_manifests
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    }
    
    var errUnrecognized = fmt.Errorf("unrecognized profile format")
    var errMalformed = fmt.Errorf("malformed profile format")
    var errNoData = fmt.Errorf("empty input file")
    var errConcatProfile = fmt.Errorf("concatenated profiles detected")
    
    func parseLegacy(data []byte) (*Profile, error) {
    	parsers := []func([]byte) (*Profile, error){
    		parseCPU,
    		parseHeap,
    		parseGoCount, // goroutine, threadcreate
    		parseThread,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/dwarf.go

    			pcdelta := p.Pc - pc
    			lastpc = p.Pc
    			putpclcdelta(ctxt, dctxt, lines, uint64(pcdelta), int64(newLine)-line)
    			line, pc = int64(newLine), p.Pc
    		}
    	}
    
    	// Because these symbols will be concatenated together by the
    	// linker, we need to reset the state machine that controls the
    	// debug symbols. Do this using an end-of-sequence operator.
    	//
    	// Note: at one point in time, Delve did not support multiple end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Chars.java

       * {@code ByteBuffer.allocate(2).putChar(value).array()}. For example, the input value {@code
       * '\\u5432'} would yield the byte array {@code {0x54, 0x32}}.
       *
       * <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
    - 23.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Chars.java

       * {@code ByteBuffer.allocate(2).putChar(value).array()}. For example, the input value {@code
       * '\\u5432'} would yield the byte array {@code {0x54, 0x32}}.
       *
       * <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
    - 23.5K bytes
    - Viewed (0)
Back to top