Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for rewrite (0.19 sec)

  1. Makefile

    	@echo "Verify healing with root drives"
    	@(env bash $(PWD)/buildscripts/verify-healing-with-root-disks.sh)
    
    verify-healing-with-rewrite: install-race ## verify healing to rewrite old xl.meta -> new xl.meta
    	@echo "Verify healing with rewrite"
    	@(env bash $(PWD)/buildscripts/rewrite-old-new.sh)
    
    verify-healing-inconsistent-versions: install-race ## verify resolving inconsistent versions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	// nolint: staticcheck
    	action.MaxGrpcTimeout = action.Timeout
    
    	out.Action = &route.Route_Route{Route: action}
    
    	if in.Rewrite != nil {
    		action.PrefixRewrite = in.Rewrite.GetUri()
    		if in.Rewrite.GetAuthority() != "" {
    			authority = in.Rewrite.GetAuthority()
    		}
    	}
    	if authority != "" {
    		action.HostRewriteSpecifier = &route.RouteAction_HostRewriteLiteral{
    			HostRewriteLiteral: authority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

            changed = true;
          }
        }
        if (changed) {
          rewriter.finalizeOpModification(branch);
          return success();
        } else {
          rewriter.cancelOpModification(branch);
          return failure();
        }
      }
    
      LogicalResult matchAndRewrite(TF::IfOp ifop,
                                    PatternRewriter& rewriter) const override {
        bool success =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    }
    
    // RenameDataResp - RenameData()'s response.
    // Provides information about the final state of Rename()
    //   - on xl.meta (array of versions) on disk to check for version disparity
    //   - on rewrite dataDir on disk that must be additionally purged
    //     only after as a 2-phase call, allowing the older dataDir to
    //     hang-around in-case we need some form of recovery.
    type RenameDataResp struct {
    	Sign       []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    				}
    				d.ldr.SetAttrReachable(d.mapinitnoop, true)
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("deadcode: %s rewrite %s ref to %s\n",
    						d.ldr.SymName(idx), rsn,
    						d.ldr.SymName(d.mapinitnoop))
    				}
    				if su == nil {
    					su = d.ldr.MakeSymbolUpdater(idx)
    				}
    				su.SetRelocSym(i, d.mapinitnoop)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Optimizes Tensorflow graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTFOptimizePass();
    void RegisterTFOptimizePassPipeline();
    
    // Creates pass to rewrite RecvTPUEmbeddingActivationsOp and
    // SendTPUEmbeddingGradients ops to internal variants.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateRewriteTPUEmbeddingOpsPass();
    
    // Performs specific fusion for GPU targets.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    	// TODO: Move to well known.
    	StatefulSessionFilter = "envoy.filters.http.stateful_session"
    
    	// AlpnOverrideMetadataKey is the key under which metadata is added
    	// to indicate whether Istio rewrite the ALPN headers
    	AlpnOverrideMetadataKey = "alpn_override"
    )
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    var ALPNH2Only = pm.ALPNH2Only
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            withGradleIsolate(owner, internalTypesCodec) {
                doWrite(work)
            }
        }
    
        suspend fun ReadContext.readWork(): ScheduledWork =
            withGradleIsolate(owner, internalTypesCodec) {
                doRead()
            }
    
        private
        suspend fun WriteContext.doWrite(work: ScheduledWork) {
            val nodes = work.scheduledNodes
            val nodeCount = nodes.size
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top