Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ADD (0.08 sec)

  1. RELEASE.md

    *   Math and Linear Algebra:
        *   Add `tf.linalg.LinearOperatorTridiag`.
        *   Add `LinearOperatorBlockLowerTriangular`
        *   Add broadcasting support to
            tf.linalg.triangular_solve[#26204](https://github.com/tensorflow/tensorflow/issues/26204),
            tf.math.invert_permutation.
        *   Add `tf.math.sobol_sample` op.
        *   Add `tf.math.xlog1py`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                                        Support: Core
                                      properties:
                                        add:
                                          description: |-
                                            Add adds the given header(s) (name, value) to the request
                                            before the action. It appends to any existing values associated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    			return true
    		}
    		break
    	}
    	// match: (ADD x (NEG y))
    	// result: (SUB x y)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARM64NEG {
    				continue
    			}
    			y := v_1.Args[0]
    			v.reset(OpARM64SUB)
    			v.AddArg2(x, y)
    			return true
    		}
    		break
    	}
    	// match: (ADD x0 x1:(SLLconst [c] y))
    	// cond: clobberIfDead(x1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    	// All the fields in pod spec should be either osSpecific or osNeutral field
    	// To make a field OS specific:
    	// - Add documentation to the os specific field indicating which os it can/cannot be set for
    	// - Add documentation to the os field in the api
    	// - Add validation logic validateLinux, validateWindows functions to make sure the field is only set for eligible OSes
    	osSpecificFields := sets.NewString(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"New", Func, 0},
    		{"Unwrap", Func, 13},
    	},
    	"expvar": {
    		{"(*Float).Add", Method, 0},
    		{"(*Float).Set", Method, 0},
    		{"(*Float).String", Method, 0},
    		{"(*Float).Value", Method, 8},
    		{"(*Int).Add", Method, 0},
    		{"(*Int).Set", Method, 0},
    		{"(*Int).String", Method, 0},
    		{"(*Int).Value", Method, 8},
    		{"(*Map).Add", Method, 0},
    		{"(*Map).AddFloat", Method, 0},
    		{"(*Map).Delete", Method, 12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                  "type": "integer",
                  "uniqueItems": true
                }
              },
              {
                "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
                "in": "query",
                "name": "watch",
                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                              description: Determines how the patch should be applied.
                              enum:
                              - INVALID
                              - MERGE
                              - ADD
                              - REMOVE
                              - INSERT_BEFORE
                              - INSERT_AFTER
                              - INSERT_FIRST
                              - REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                Determines how the patch should be applied.
    
                                Valid Options: MERGE, ADD, REMOVE, INSERT_BEFORE, INSERT_AFTER, INSERT_FIRST, REPLACE
                              enum:
                              - INVALID
                              - MERGE
                              - ADD
                              - REMOVE
                              - INSERT_BEFORE
                              - INSERT_AFTER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    indices.shape[:-1] + tensor.shape[indices.shape[-1]:]
    ```
    
    The simplest form of `tensor_scatter_nd_add` is to add individual elements to a
    tensor by index. For example, say we want to add 4 elements in a rank-1
    tensor with 8 elements.
    
    In Python, this scatter add operation would look like this:
    
    >>> indices = tf.constant([[4], [3], [1], [7]])
    >>> updates = tf.constant([9, 10, 11, 12])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                                Determines how the patch should be applied.
    
                                Valid Options: MERGE, ADD, REMOVE, INSERT_BEFORE, INSERT_AFTER, INSERT_FIRST, REPLACE
                              enum:
                              - INVALID
                              - MERGE
                              - ADD
                              - REMOVE
                              - INSERT_BEFORE
                              - INSERT_AFTER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top