Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Trailing (0.3 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    for arithmetic operations. Two shapes are compatible if for each
    dimension pair they are either equal or one of them is one. When trying
    to broadcast a Tensor to a shape, it starts with the trailing dimensions,
    and works its way forward.
    
    For example,
    
    >>> x = tf.constant([1, 2, 3])
    >>> y = tf.broadcast_to(x, [3, 3])
    >>> print(y)
    tf.Tensor(
        [[1 2 3]
         [1 2 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
      for flag in "${FLAGS[@]}"; do
        params+="\n\"$flag\","
      done
      if [ -n "$params" ]; then
        echo "${params::-1}"  #  drop trailing comma
      fi
    }
    
    function append-param-if-not-present {
      # A helper function to add flag to an arguments string
      # if no such flag is present already
      local params="$1"
      local -r flag="$2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    			minRange := i - 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    			i = 0
    		} else {
    			i = bytes.Index(data, modulePrefix)
    			if i < 0 {
    				return ""
    			}
    			i++
    		}
    		line := data[i:]
    
    		// Cut line at \n, drop trailing \r if present.
    		if j := bytes.IndexByte(line, '\n'); j >= 0 {
    			line = line[:j]
    		}
    		if line[len(line)-1] == '\r' {
    			line = line[:len(line)-1]
    		}
    		line = line[len("module "):]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. fastapi/applications.py

                    @app.get("/items/")
                    async def read_items():
                        return [{"item_id": "Foo"}]
                    ```
    
                    With this app, if a client goes to `/items` (without a trailing slash),
                    they will be automatically redirected with an HTTP status code of 307
                    to `/items/`.
                    """
                ),
            ] = True,
            docs_url: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    func (ab *AsmBuf) Put(b []byte) {
    	copy(ab.buf[ab.off:], b)
    	ab.off += len(b)
    }
    
    // PutOpBytesLit writes zero terminated sequence of bytes from op,
    // starting at specified offset (e.g. z counter value).
    // Trailing 0 is not written.
    //
    // Intended to be used for literal Z cases.
    // Literal Z cases usually have "Zlit" in their name (Zlit, Zlitr_m, Zlitm_r).
    func (ab *AsmBuf) PutOpBytesLit(offset int, op *opBytes) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_VCHL   uint32 = 0xE7F9 // 	VRR-b	VECTOR COMPARE HIGH LOGICAL
    	op_VCLZ   uint32 = 0xE753 // 	VRR-a	VECTOR COUNT LEADING ZEROS
    	op_VCTZ   uint32 = 0xE752 // 	VRR-a	VECTOR COUNT TRAILING ZEROS
    	op_VEC    uint32 = 0xE7DB // 	VRR-a	VECTOR ELEMENT COMPARE
    	op_VECL   uint32 = 0xE7D9 // 	VRR-a	VECTOR ELEMENT COMPARE LOGICAL
    	op_VERIM  uint32 = 0xE772 // 	VRI-d	VECTOR ELEMENT ROTATE AND INSERT UNDER MASK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		return true
    	}
    	return sequenceOfOnes(x) || sequenceOfOnes(^x)
    }
    
    // sequenceOfOnes tests whether a constant is a sequence of ones in binary, with leading and trailing zeros.
    func sequenceOfOnes(x uint64) bool {
    	y := x & -x // lowest set bit of x. x is good iff x+y is a power of 2
    	y += x
    	return (y-1)&y == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <comment>We could probably have a specific element for a dev mailing list for things like CI,
            and maybe even a specific element for the user and scm mailing lists. Then leave the more
            lose structure for any other type of mailing list.</comment>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.python.saved_model import signature_constants
    from tensorflow.python.saved_model import signature_def_utils_impl
    from tensorflow.python.saved_model import tag_constants
    from tensorflow.python.training import checkpoint_utils
    from tensorflow.python.types import core
    
    
    # Type aliases for quantization method protobuf enums.
    _PresetMethod = quant_opts_pb2.QuantizationMethod.PresetMethod
    _CalibrationMethod = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top