Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for endlines (0.14 sec)

  1. src/net/http/server.go

    	//
    	// It becomes the caller's responsibility to manage
    	// and close the connection.
    	//
    	// The returned net.Conn may have read or write deadlines
    	// already set, depending on the configuration of the
    	// Server. It is the caller's responsibility to set
    	// or clear those deadlines as needed.
    	//
    	// The returned bufio.Reader may contain unprocessed buffered
    	// data from the client.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            Set<TestFile> dirs = []
            def pattern = Pattern.compile("Transformed " + Pattern.quote(from) + " to " + Pattern.quote(to) + " into (${outputDirPattern})")
            for (def line : stream.call().readLines()) {
                def matcher = pattern.matcher(line)
                if (matcher.matches()) {
                    dirs.add(new TestFile(matcher.group(1)))
                }
            }
            return dirs
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExecutorTPUV1IslandInliningPass : Pass<"tf-executor-tpu-v1-island-inlining", "ModuleOp"> {
      let summary = "Inline calls to the nested TPU module.";
    
      let description = [{
        This pass inlines the islands calling into the nested module that was
        outlined, thus reversing the effect of the
        `-tf-executor-tpu-v1-island-outlining` pass.
    
        For example, the following:
        ```mlir
        module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			expectedValidationErr:   "call cost exceeds limit for messageExpression",
    			expectedRemainingBudget: -1,
    		},
    		{
    			name:                  "messageExpression is not allowed to generate a string with newlines",
    			message:               "message not messageExpression",
    			messageExpression:     `"str with \na newline"`,
    			costBudget:            celconfig.RuntimeCELCostBudget,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			t.Errorf("Handler %s: got %d reqs; want 1", handler.name, numReqs)
    		}
    	}
    }
    
    // slowTestConn is a net.Conn that provides a means to simulate parts of a
    // request being received piecemeal. Deadlines can be set and enforced in both
    // Read and Write.
    type slowTestConn struct {
    	// over multiple calls to Read, time.Durations are slept, strings are read.
    	script []any
    	closec chan bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top