Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,020 for Replacer (0.38 sec)

  1. src/html/escape.go

    			b[dst] = b[src]
    			return dst + 1, src + 1
    		}
    
    		if 0x80 <= x && x <= 0x9F {
    			// Replace characters from Windows-1252 with UTF-8 equivalents.
    			x = replacementTable[x-0x80]
    		} else if x == 0 || (0xD800 <= x && x <= 0xDFFF) || x > 0x10FFFF {
    			// Replace invalid characters with the replacement character.
    			x = '\uFFFD'
    		}
    
    		return dst + utf8.EncodeRune(b[dst:], x), src + i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/interleaved/interleaved.go

    //
    // If edit(n) returns nil, no change is made. Otherwise, the result
    // replaces n in fn's body, and fixpoint iterates at least once more.
    //
    // After an iteration where all edit calls return nil, fixpoint
    // returns.
    func fixpoint(fn *ir.Func, match func(ir.Node) bool, edit func(ir.Node) ir.Node) {
    	// Consider the expression "f(g())". We want to be able to replace
    	// "g()" in-place with its inlined representation. But if we first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. hack/update-vendor.sh

                 select(.Path == .Replace.Path) |
                 select(.Version == .Replace.Version) |
                 "-dropreplace \(.Replace.Path)"' |
        xargs -L 100 go mod edit -fmt
    
        # group require/replace directives
        group_directives
      )
    done
    echo "=== tidying root"
    go mod tidy
    
    # prune unused pinned non-local replace directives
    comm -23 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/log/slog/value_test.go

    	} {
    		v := AnyValue(want)
    		got := v.Any()
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("got %v, want %v", got, want)
    		}
    	}
    }
    
    func TestLogValue(t *testing.T) {
    	want := "replaced"
    	r := &replace{StringValue(want)}
    	v := AnyValue(r)
    	if g, w := v.Kind(), KindLogValuer; g != w {
    		t.Errorf("got %s, want %s", g, w)
    	}
    	got := v.LogValuer().LogValue().Any()
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/ExpressionReplacingVisitorSupport.java

            stat.setLoopBlock(replace(stat.getLoopBlock()));
        }
    
        @Override
        public void visitIfElse(IfStatement stat) {
            stat.setBooleanExpression((BooleanExpression) replaceExpr(stat.getBooleanExpression()));
            stat.setIfBlock(replace(stat.getIfBlock()));
            stat.setElseBlock(replace(stat.getElseBlock()));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    // lead to a communication op or function call with a communication op
    // (transitively), and an optional clone of itself. If `clone` is set, function
    // calls to `original` will be replaced with `clone`.
    struct FuncToRewrite {
      func::FuncOp original;
      llvm::SmallPtrSet<Operation*, 4> control_flow_ops;
      llvm::SmallPtrSet<Block*, 4> control_flow_blocks;
      func::FuncOp clone;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Bug reports are greatly appreciated during the RC phase.
    
    The Gradle team may create additional patch releases to replace the final release due to critical bug fixes or regressions.
    For instance, Gradle 5.2.1 replaces the Gradle 5.2 release.
    
    Once a release candidate has been made, all feature development moves on to the next release for the latest major version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// Valid values are:
    	//
    	// - "Allow" (default): allows CronJobs to run concurrently;
    	// - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
    	// - "Replace": cancels currently running job and replaces it with a new one
    	// +optional
    	ConcurrencyPolicy ConcurrencyPolicy `json:"concurrencyPolicy,omitempty" protobuf:"bytes,3,opt,name=concurrencyPolicy,casttype=ConcurrencyPolicy"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import.go

    			return "cannot find module providing package " + e.Path
    		}
    
    		if e.replaced.Path != "" {
    			suggestArg := e.replaced.Path
    			if !module.IsZeroPseudoVersion(e.replaced.Version) {
    				suggestArg = e.replaced.String()
    			}
    			return fmt.Sprintf("module %s provides package %s and is replaced but not required; to add it:\n\tgo get %s", e.replaced.Path, e.Path, suggestArg)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

          "TF::TensorFlowDialect",
      ];
    }
    
    def ReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass : Pass<"stablehlo-replace-stablehlo-ops-in-main-function-with-xla-call-module-ops", "mlir::ModuleOp"> {
      let summary = "Replaces the StableHLO ops with a separate XlaCallModuleOps.";
      let description = [{
         Replaces the StableHLO ops in the main function block with
         tf.XlaCallModuleOps as separate subgraphs. Wires them back to the main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top