Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 334 for racewrite (0.51 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-request-redirect-with-backendref.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-rewrite
    spec:
      hostnames:
        - rewrite.example
      rules:
        - filters:
            - type: RequestRedirect
              requestRedirect:
                scheme: https
                statusCode: 301
          backendRefs:
            - name: example-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 344 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-plugins/src/test/kotlin/org/gradle/kotlin/dsl/plugins/dsl/ExperimentalCompilerWarningSilencerTest.kt

        @Test
        fun `does not tamper regular message`() {
            val silencer = ExperimentalCompilerWarningSilencer(listOf("SOME"))
    
            val message = "Hello, World!"
            val rewritten = silencer.rewrite(LogLevel.WARN, message)
    
            assertThat(rewritten, equalTo(message))
        }
    
        @Test
        fun `silences unsafe internal compiler arguments`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/cmd/gotraceraw/main.go

    	if narg := flag.NArg(); narg != 1 {
    		log.Fatal("expected exactly one positional argument: the mode to operate in; see -h output")
    	}
    
    	r := os.Stdin
    	w := os.Stdout
    
    	var tr traceReader
    	var tw traceWriter
    	var err error
    
    	switch flag.Arg(0) {
    	case "text2bytes":
    		tr, err = raw.NewTextReader(r)
    		if err != nil {
    			log.Fatal(err)
    		}
    		tw, err = raw.NewWriter(w, tr.Version())
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      if (orig_op->Device() != kVariantDeviceNull) return absl::OkStatus();
      if (orig_op->is_function()) return absl::OkStatus();
    
      // TODO(fengliuai): We need a better condition to skip the rewrite. Currently,
      // The rewrite is enabled for all the tf ops and it is a no-op if the tf op
      // isn't a composite op. The following ops are explicitly skipped here because
      // their "no-op" expansion is known to cause problems in some cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/net/http/httputil/reverseproxy.go

    type ProxyRequest struct {
    	// In is the request received by the proxy.
    	// The Rewrite function must not modify In.
    	In *http.Request
    
    	// Out is the request which will be sent by the proxy.
    	// The Rewrite function may modify or replace this request.
    	// Hop-by-hop headers are removed from this request
    	// before Rewrite is called.
    	Out *http.Request
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/go/types/generate_test.go

    		switch n := n.(type) {
    		case *ast.ImportSpec:
    			// rewrite import path "cmd/compile/internal/syntax" to "go/token"
    			if n.Path.Kind != token.STRING {
    				panic("invalid import path")
    			}
    			m.rename(&n.Path.Value)
    			return false
    		case *ast.SelectorExpr:
    			// rewrite syntax.Pos to token.Pos
    			m.renameSel(n)
    		case *ast.CallExpr:
    			// rewrite x.IsKnown() to x.IsValid()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    }
    
    var ssaRewriteFileSubstring = filepath.FromSlash("src/cmd/compile/internal/ssa/rewrite")
    
    // isUnneededSSARewriteFile reports whether srcFile is a
    // src/cmd/compile/internal/ssa/rewriteARCHNAME.go file for an
    // architecture that isn't for the given GOARCH.
    //
    // When unneeded is true archCaps is the rewrite base filename without
    // the "rewrite" prefix or ".go" suffix: AMD64, 386, ARM, ARM64, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

        }
    
        def "scrolling the label by zero row between redraw won't rewrite the text to ansi"() {
            given:
            label.text = "text"
    
            when:
            redraw()
            label.scrollBy(0)
            redraw()
    
            then:
            1 * ansi.a('text')
            0 * ansi._
        }
    
        def "newLineAdjustment between redraw won't rewrite the text to ansi"() {
            given:
            label.text = "text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.td

    def EmbeddingPipeliningPass : Pass<"tf-embedding-pipelining", "mlir::ModuleOp"> {
      let summary = "Rewrite graph for embedding pipelining";
      let constructor = "TFDevice::CreateEmbeddingPipeliningPass()";
        let description = [{
        For architectures that support accelerated embedding lookups, this pass will
        rewrite the graph to use pipelining for better device utilization.
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

    import java.util.Arrays;
    
    import org.apache.logging.log4j.Level;
    import org.apache.logging.log4j.core.Core;
    import org.apache.logging.log4j.core.LogEvent;
    import org.apache.logging.log4j.core.appender.rewrite.RewritePolicy;
    import org.apache.logging.log4j.core.config.plugins.Plugin;
    import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
    import org.apache.logging.log4j.core.config.plugins.PluginFactory;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top