Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for line1 (0.12 sec)

  1. src/crypto/tls/handshake_client_test.go

    func (o *opensslOutputSink) Write(data []byte) (n int, err error) {
    	o.line = append(o.line, data...)
    	o.all = append(o.all, data...)
    
    	for {
    		line, next, ok := bytes.Cut(o.line, []byte("\n"))
    		if !ok {
    			break
    		}
    
    		if bytes.Equal([]byte(opensslEndOfHandshake), line) {
    			o.handshakeComplete <- struct{}{}
    		}
    		if bytes.Equal([]byte(opensslReadKeyUpdate), line) {
    			o.readKeyUpdate <- struct{}{}
    		}
    		o.line = next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

        Tensor output;
        ASSERT_EQ(absl::OkStatus(), TF_TensorToTensor(dst, &output)) << line;
        ASSERT_EQ(src.NumElements(), output.NumElements()) << line;
        for (int64_t i = 0; i < src.NumElements(); ++i) {
          ASSERT_EQ(data[i], output.flat<tstring>()(i)) << line;
        }
    
        TF_DeleteTensor(dst);
      }
    }
    
    TEST(CAPI, TensorEncodeDecodeStrings) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            public void printFileHeader(Collection<String> lines) {
                if (!comments.equals(BuildInitComments.ON)) {
                    return;
                }
    
                println("/*");
                println(" * This file was generated by the Gradle 'init' task.");
                if (!lines.isEmpty()) {
                    println(" *");
                    for (String headerLine : lines) {
                        if (headerLine.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy_test.go

    	br := bufio.NewReader(rwc)
    	for {
    		line, err := br.ReadString('\n')
    		switch {
    		case line == terminalMsg: // this case before "err == io.EOF"
    			t.Fatalf("The websocket request was not canceled, unfortunately!")
    
    		case err == io.EOF:
    			return
    
    		case err != nil:
    			t.Fatalf("Unexpected error: %v", err)
    
    		case line == nthResponse(0): // We've gotten the first response back
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. .bazelrc

    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    build --noincompatible_remove_legacy_whole_archive
    build --features=-force_no_whole_archive
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	_, _, line, _ := goruntime.Caller(1)
    	actualEvents := make([]watch.Event, len(events))
    	for idx := range events {
    		select {
    		case event := <-w.ResultChan():
    			actualEvents[idx] = event
    		case <-time.After(wait.ForeverTestTimeout):
    			t.Logf("(called from line %d)", line)
    			t.Errorf("Timed out waiting for an event")
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    		if *debug {
    			fmt.Printf("test execute error: %s\n", err)
    		}
    		t.Errorf("expected myError; got %s", err)
    	}
    }
    
    const execErrorText = `line 1
    line 2
    line 3
    {{template "one" .}}
    {{define "one"}}{{template "two" .}}{{end}}
    {{define "two"}}{{template "three" .}}{{end}}
    {{define "three"}}{{index "hi" $}}{{end}}`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            outputContains("result = [b-dir.green]")
        }
    
        void transformed(String... expected) {
            def actual = output.readLines().inject([]) { items, line ->
                def matcher = Pattern.compile("processing\\s+(.+)").matcher(line)
                if (matcher.find()) {
                    items.add(matcher.group(1))
                }
                return items
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    When gradually improving your plugin or build logic to support the configuration cache it can be useful to temporarily turn problems into warnings, with no guarantee that the build will work.
    
    This can be done from the command line:
    
    ----
    ❯ gradle --configuration-cache-problems=warn
    ----
    
    or in a `gradle.properties` file:
    
    [source,properties]
    ----
    org.gradle.configuration-cache.problems=warn
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		}
    		i := 1
    		pc, file, line, ok := runtime.Caller(i)
    		if ok {
    			name = runtime.FuncForPC(pc).Name()
    		}
    		for ok && reg.MatchString(runtime.FuncForPC(pc).Name()) {
    			i += 1
    			pc, file, line, ok = runtime.Caller(i)
    		}
    		if ok {
    			if ZosTracefile == nil {
    				ZosConsolePrintf("From %s:%d\n", file, line)
    				ZosConsolePrintf("%s: %s (errno2=0x%x)\n", name, e.Error(), e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top