Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for rewrite (0.33 sec)

  1. src/cmd/cgo/gcc.go

    				needsUnsafe = true
    			}
    		}
    	}
    	return needsUnsafe
    }
    
    // rewriteCall rewrites one call to add pointer checks.
    // If any pointer checks are required, we rewrite the call into a
    // function literal that calls _cgoCheckPointer for each pointer
    // argument and then calls the original function.
    // This returns the rewritten call and whether the package needs to
    // import unsafe as _cgo_unsafe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    				{
    					Match: []*networking.HTTPMatchRequest{
    						{
    							Uri: &networking.StringMatch{
    								MatchType: &networking.StringMatch_Prefix{Prefix: "/legacy/path"},
    							},
    						},
    					},
    					Rewrite: &networking.HTTPRewrite{
    						Uri: "/productpage",
    					},
    					Delegate: &networking.Delegate{
    						Name:      "productpage-vs",
    						Namespace: "default",
    					},
    				},
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        even for a single call.
    
        Interceptors that rewrite or replace the request body may now inadvertently interfere with
        duplex request bodies. Such interceptors should check `RequestBody.isDuplex()` and avoid
        accessing the request body when it is.
    
        Duplex calls require HTTP/2. If HTTP/1 is established instead the duplex call will fail. The
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      return %identity : tensor<i32>
    }
    ```
    ### `-tf-tpu-rewrite`
    
    _Rewrites a `tf_device.cluster_func` on TPUs into TPU runtime operations._
    
    This pass rewrites a `tf_device.cluster_func` operation into a sequence of `tf._TPUCompileMlir`
    and `tf.TPUExecute` operations. `tf._TPUCompileMlir` contains a MLIR module that is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    		j := int(sa[i])
    		if j >= 0 {
    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Value result =
            rewriter.create<SelectV2Op>(loc, need_to_reflect, reflection, log_y);
    
        // lgamma(+/-inf) = +inf.
        Value is_inf = rewriter.create<IsInfOp>(loc, tensor_bool_type, input);
        result = rewriter.create<SelectV2Op>(loc, is_inf, infinity, result);
    
        if (needs_cast) {
          result = rewriter.create<CastOp>(loc, original_tensor_type, result);
        }
    
        rewriter.replaceOp(op, result);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	}
    
    	cmd = exec.Command(gorootBinGo, args...)
    	setupCmd(cmd)
    	if t.json && opts.variant != "" && !opts.omitVariant {
    		// Rewrite Package in the JSON output to be pkg:variant. When omitVariant
    		// is true, pkg.TestName is already unambiguous, so we don't need to
    		// rewrite the Package field.
    		//
    		// We only want to process JSON on the child's stdout. Ideally if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs);
    }
    
    // TODO(b/168035831): Model db_uri read/write.
    def TF_CreateSummaryDbWriterOp : TF_Op<"CreateSummaryDbWriter", []> {
      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    
        // Name that is used for the call node. This may not be
        // call_node_def_.name() if the client supplies a rewrite lambda.
        string function_def_name_;
    
        // Placeholder node simulating the host compute key in the output graph.
        // Not owned.
        Node* host_compute_key_placeholder_ = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (TFL_Relu6Op $x),
          [(IsConstantValueOf<6> $y)]>;
    
    // For both relu1 and relu_0_to_1, the min/max operators commute,
    // so there are two possible orderings we need to rewrite.
    // Concretely, `m < n -> max(m, min(n, x)) = min(m, max(m, x))`.
    // Proof:
    // case (x <= m)
    //   max(m, min(n, x)) = max(m, m) = m and
    //   min(n, max(m, x)) = min(n, m) = m
    // case (m < x < n)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top