Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for redirection (0.2 sec)

  1. src/cmd/link/internal/ld/data.go

    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    performed instead:
    
    ```python
    tf.cumprod([a, b, c], exclusive=True)  # => [1, a, a * b]
    ```
    
    By setting the `reverse` kwarg to `True`, the cumprod is performed in the
    opposite direction:
    
    ```python
    tf.cumprod([a, b, c], reverse=True)  # => [a * b * c, b * c, c]
    ```
    
    This is more efficient than using separate `tf.reverse` ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		// For 2, we need to ensure that if there might be partial overlap,
    		// then we can't use OpMove; we must use memmove instead.
    		// (memmove handles partial overlap by copying in the correct
    		// direction. OpMove does not.)
    		//
    		// Note that we have to be careful here not to introduce a call when
    		// we're marshaling arguments to a call or unmarshaling results from a call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    	return common.OpenAPIDefinition{
    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

            "value",
            "periodSeconds"
          ],
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.HPAScalingRules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top