Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 326 for rewrite (0.19 sec)

  1. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                                ReplaceFullPath specifies the value with which to replace the full path
                                                of a request during a rewrite or redirect.
                                              maxLength: 1024
                                              type: string
                                            replacePrefixMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/cgocall.go

    // pointer to memory allocated by the Go runtime. Programs that use
    // unsafe can evade this restriction easily, so we don't try to catch
    // them. The cgo program will rewrite all possibly bad pointer
    // arguments to call cgoCheckPointer, where we can catch cases of a Go
    // pointer pointing to an unpinned Go pointer.
    
    // Complicating matters, taking the address of a slice or array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    		w.Header().Add("Content-Type", "application/json")
    		b, err := protomarshal.MarshalIndent(response, "  ")
    		if err == nil {
    			_, err = w.Write(b)
    			if err != nil {
    				log.Infof("fail to write debug response: %v", err)
    			}
    			return
    		}
    
    		// Failed as protobuf.  Try as regular JSON
    		proxyLog.Warnf("could not marshal istiod response as pb: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/rewrite/uri_template/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_debug_visitor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_id_generator/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto out_type = op.getZ().getType();
    
        l = rewriter.create<ConvertOp>(op.getLoc(), l, rewriter.getF32Type());
        r = rewriter.create<ConvertOp>(op.getLoc(), r, rewriter.getF32Type());
    
        auto intermediate = rewriter.create<TF::FloorDivOp>(
            op.getLoc(),
            ChangeTensorElementType(&rewriter, out_type, rewriter.getF32Type()), l,
            r);
    
        auto floor_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT void TFE_ContextSetRunEagerOpAsFunction(TFE_Context* ctx,
                                                           unsigned char enable,
                                                           TF_Status* status);
    
    // Enables rewrite jit_compile functions.
    TF_CAPI_EXPORT void TFE_ContextSetJitCompileRewrite(TFE_Context* ctx,
                                                        unsigned char enable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

                            shape_determination_fns.shape_representation_fn(
                                arg_shapes[i].shape, arg_dtype,
                                /*use_fast_memory=*/false, layout_preference));
    
        // Rewrite layout with sharding, if sharding is set.
        auto sharding =
            main_func.getArgAttrOfType<mlir::StringAttr>(i, "mhlo.sharding");
        TF_RETURN_IF_ERROR(MaybeRewriteLayoutWithShardedShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    // pathEnvName returns the platform-specific variable used by os/exec.LookPath
    // to look up executable names (either "PATH" or "path").
    //
    // TODO(bcmills): Investigate whether we can instead use PATH uniformly and
    // rewrite it to $path when executing subprocesses.
    func pathEnvName() string {
    	switch runtime.GOOS {
    	case "plan9":
    		return "path"
    	default:
    		return "PATH"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. cmd/erasure-healing.go

    			}
    
    			// Heal each part. erasure.Heal() will write the healed
    			// part to .minio/tmp/uuid/ which needs to be renamed
    			// later to the final location.
    			err = erasure.Heal(ctx, writers, readers, partSize, prefer)
    			closeBitrotReaders(readers)
    			closeBitrotWriters(writers)
    			if err != nil {
    				return result, err
    			}
    
    			// outDatedDisks that had write errors should not be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top