Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for maxsize (0.15 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    	VarLoc
    }
    
    func (ls *liveSlot) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    }
    
    // Malform chunk size given a request signed using streaming signatureV4.
    func malformChunkSizeSigV4(req *http.Request, badSize int64) (*http.Request, error) {
    	bufReader := bufio.NewReader(req.Body)
    	_, chunkSignature, err := readChunkLine(bufReader)
    	if err != nil {
    		return nil, err
    	}
    
    	n := badSize
    	newHexChunkSize := []byte(fmt.Sprintf("%x", n))
    	newChunkHdr := []byte(fmt.Sprintf("%s"+s3ChunkSignatureStr+"%s\r\n",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    ```mlir
    func @main(%arg0: tensor<8x4xf32>) {
      %elem_shape = "tf.Const"() {value = dense<[8, 4]> : tensor<2xi32>} : () -> tensor<2xi32>
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
      %tl = "tf.EmptyTensorList"(%elem_shape, %max_size) : (tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<8x4xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    Taking care of the **order** of instructions in the `Dockerfile` and the **Docker cache** you can **minimize build times**, to maximize your productivity (and avoid boredom). 😎
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// handlers to continue to read the request body while concurrently
    	// writing the response. However, such behavior may not be supported
    	// by all HTTP/2 clients. Handlers should read before writing if
    	// possible to maximize compatibility.
    	Write([]byte) (int, error)
    
    	// WriteHeader sends an HTTP response header with the provided
    	// status code.
    	//
    	// If WriteHeader is not called explicitly, the first call to Write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let arguments = (ins
        Arg<TF_Int32Tensor, [{The maximum size of the stack if non-negative. If negative, the stack
    size is unlimited.}]>:$max_size,
    
        TypeAttr:$elem_type,
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$stack_name
      );
    
      let results = (outs
        Res<TF_ResourceTensor, [{The handle to the stack.}], [TF_StackAlloc]>:$handle
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. RELEASE.md

            value, but a deterministic sequence. This change will make the
            initialize behavior align between v1 and v2.
    
    *   `tf.lite`:
    
        *   Rename fields `SignatureDef` table in schema to maximize the parity with
            TF SavedModel's Signature concept.
        *   Deprecate Makefile builds. Makefile users need to migrate their builds
            to CMake or Bazel. Please refer to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top