Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for rewrite (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	}
    
    	if actualErr.Details.RetryAfterSeconds <= 0 {
    		t.Fatalf("RetryAfterSeconds must be > 0, actual value: %v", actualErr.Details.RetryAfterSeconds)
    	}
    	// rewrite the Details as it contains retry seconds
    	// and validate the whole struct
    	expectedErr.ErrStatus.Details = actualErr.Details
    	if diff := cmp.Diff(*actualErr, expectedErr.ErrStatus); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (1)
  2. pilot/pkg/model/extensions.go

    	sr, err := credentials.ParseResourceName(rn, pluginNamespace, "", "")
    	if err != nil {
    		log.Debugf("Failed to parse wasm secret resource name %v", err)
    		return ""
    	}
    	// Forcely rewrite secret namespace to plugin namespace, since we require secret resource
    	// referenced by WasmPlugin co-located with WasmPlugin in the same namespace.
    	sr.Namespace = pluginNamespace
    	return sr.KubernetesResourceName()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    				})
    				continue
    			}
    			switch resp.TypeUrl {
    			case model.ExtensionConfigurationType:
    				if features.WasmRemoteLoadConversion {
    					// If Wasm remote load conversion feature is enabled, rewrite and send.
    					go p.deltaRewriteAndForward(con, resp, func(resp *discovery.DeltaDiscoveryResponse) {
    						// Forward the response using the thread of `handleUpstreamResponse`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      // canonical.
      if (cluster_vals.size() == num_results) return failure();
    
      // Rewrite return op in the cluster.
      rewriter.setInsertionPoint(return_op);
      auto new_return =
          rewriter.replaceOpWithNewOp<tf_device::ReturnOp>(return_op, cluster_vals);
    
      // Rewrite the cluster op.
      rewriter.setInsertionPoint(op);
      auto new_op = rewriter.create<tf_device::ClusterOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //     xy    matches x followed by y
    //
    //   If you accidentally use PCRE or POSIX extended regex features
    //   not implemented by us, you will get a run-time failure.  In that
    //   case, please try to rewrite your regular expression within the
    //   above syntax.
    //
    //   This implementation is *not* meant to be as highly tuned or robust
    //   as a compiled regex library, but should perform well enough for a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

            assign_group->getLoc(), assign_group.getResult(0).getType(),
            group_size);
        auto const_group_key = rewriter.create<TF::ConstOp>(
            assign_group->getLoc(), assign_group.getResult(1).getType(), group_key);
        rewriter.replaceAllUsesWith(assign_group.getResult(0), const_group_size);
        rewriter.replaceAllUsesWith(assign_group.getResult(1), const_group_key);
        rewriter.eraseOp(assign_group);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    void AddControlOutputs(const Node& node, absl::flat_hash_set<Node*>* deps) {
      for (const Edge* edge : node.out_edges()) {
        if (edge->IsControlEdge()) {
          deps->insert(edge->dst());
        }
      }
    }
    
    // Rewrite function to be passed to EncapsulateSubgraphsInFunctions that sorts
    // the arguments into the order expected by XlaLaunch computations:
    // 1) arguments
    // 2) resource variable arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

          PatternRewriter& rewriter) const;
    
     public:
      LogicalResult matchAndRewrite(Conv2dOpTy op,
                                    PatternRewriter& rewriter) const override;
    };
    
    template <typename Conv2dOpTy>
    LogicalResult ConvertTFDilatedConvOp<Conv2dOpTy>::matchAndRewrite(
        Conv2dOpTy op, PatternRewriter& rewriter) const {
      if (!op.getResult().hasOneUse()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

             */
            RENAME_ORIGINAL_DO_CALL("doCall", null, false, (clazz, methodData) -> {
                // A Closure implementation may have an abstract doCall method. It makes no sense to rewrite that.
                boolean isValidDoCallMethod = !methodData.isAbstract() && methodData.name.equals("doCall");
                String methodNameToVisit = isValidDoCallMethod ? "doCall$original" : methodData.name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/edit.go

    The editing flags specify a sequence of editing operations.
    
    The -fmt flag reformats the go.work file without making other changes.
    This reformatting is also implied by any other modifications that use or
    rewrite the go.mod file. The only time this flag is needed is if no other
    flags are specified, as in 'go work edit -fmt'.
    
    The -godebug=key=value flag adds a godebug key=value line,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top