Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for OP (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %3 = "tf.ConcatV2"(%1, %2, %0) : (tensor<f32>, tensor<f32>, tensor<i32>) -> tensor<2xf32>
    
      func.return %3 : tensor<2xf32>
    }
    
    // Synthesize binary ops when 1 of the 3 concat inputs is a non-binary op.
    // CHECK-LABEL: testConcatCwiseBinarySynthMulOp3Inputs
    func.func @testConcatCwiseBinarySynthMulOp3Inputs(%arg0: tensor<?x1xf32>, %arg1: tensor<?x1xf32>, %arg2: tensor<?x1xf32>) -> tensor<?x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Ambient To enable ambient, you need to add `--set cni.ambient.enabled=true`. ### Calico For Calico, you must also modify the settings to allow source spoofing: - if deployed by operator, `kubectl patch felixconfigurations default --type='json' -p='[{"op": "add", "path": "/spec/workloadSourceSpoofi", "value": "Any"}]'` - if deployed by manifest, add env `FELIX_WORKLOADSOURCESPOOFI` with value `Any` in `spec.template.spec.containers.env` for daemonset `calico-node`. (This will allow PODs with specified...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    			}
    
    			// Update validation should pass same success cases
    			// copy to avoid polluting the testcase object, set a resourceVersion to allow validating update, and test a no-op update
    			v = *v.DeepCopy()
    			v.ResourceVersion = "1"
    			if errs := ValidateCronJobUpdate(&v, &v, corevalidation.PodValidationOptions{}); len(errs) != 0 {
    				t.Errorf("expected success for %s: %v", k, errs)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		ExpectedLabels map[string]string
    	}{
    		{
    			Name: "No-op if node has no labels",
    			Node: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "node0",
    					CreationTimestamp: metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    			},
    			ExpectedLabels: nil,
    		},
    		{
    			Name: "No-op if no target labels present",
    			Node: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    </pre>
    
    <p>
    An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code>
    <code>y</code> where <i>op</i> is a binary <a href="#Arithmetic_operators">arithmetic operator</a>
    is equivalent to <code>x</code> <code>=</code> <code>x</code> <i>op</i>
    <code>(y)</code> but evaluates <code>x</code>
    only once.  The <i>op</i><code>=</code> construct is a single token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	SelectCoverPackages(PackageList(pkgs), match, "build")
    }
    
    func SelectCoverPackages(roots []*Package, match []func(*Package) bool, op string) []*Package {
    	var warntag string
    	var includeMain bool
    	switch op {
    	case "build":
    		warntag = "built"
    		includeMain = true
    	case "test":
    		warntag = "tested"
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    		expectedLbPolicy                   cluster.Cluster_LbPolicy
    		expectedLocalityWeightedConfig     bool
    		expectClusterLoadAssignmenttoBeNil bool
    	}{
    		{
    			name:             "ORIGINAL_DST discovery type is a no op",
    			discoveryType:    cluster.Cluster_ORIGINAL_DST,
    			expectedLbPolicy: cluster.Cluster_CLUSTER_PROVIDED,
    		},
    		{
    			name:             "redis protocol",
    			discoveryType:    cluster.Cluster_EDS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // The -exclude=path@version and -dropexclude=path@version flags
    // add and drop an exclusion for the given module path and version.
    // Note that -exclude=path@version is a no-op if that exclusion already exists.
    //
    // The -replace=old[@v]=new[@v] flag adds a replacement of the given
    // module path and version pair. If the @v in old@v is omitted, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      /**
       * We explicitly permit apps to close the upload stream even after it has been transmitted.  We
       * also permit flush so that buffered streams can do a no-op flush when they are closed.
       * http://b/3038470
       */
      private fun testFlushAfterStreamTransmitted(transferKind: TransferKind) {
        server.enqueue(
          MockResponse(body = "abc"),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.PreferredSchedulingTerm": {
          "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
          "properties": {
            "preference": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top