Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for output1 (0.18 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
      }
    
      /**
       * Test that the client sends a RST_STREAM if doing so won't disrupt the output stream.
       */
      @Test fun clientClosesClientInputStream() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{22, "SIGIO", "pollable Event"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped (user)"},
    	{25, "SIGCONT", "continued"},
    	{26, "SIGTTIN", "stopped (tty input)"},
    	{27, "SIGTTOU", "stopped (tty output)"},
    	{28, "SIGVTALRM", "virtual Timer Expired"},
    	{29, "SIGPROF", "profiling Timer Expired"},
    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    	{31, "SIGXFSZ", "file Size Limit Exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  3. tensorflow/BUILD

        cmd = select({
            "//tensorflow:windows": """
                  $(location @local_config_def_file_filter//:def_file_filter) \\
                  --input $(location :tensorflow_def_file) \\
                  --output $@
              """,
            "//conditions:default": "touch $@",  # Just a placeholder for Unix platforms
        }),
        tools = ["@local_config_def_file_filter//:def_file_filter"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            buildFile << """
                $common
    
                project(":api") {
                    task build {
                        def outFile = file("artifact.txt")
                        outputs.file(outFile)
                        doLast {
                            outFile << "Lajos"
                        }
                    }
    
                    artifacts {
                        conf (file("artifact.txt")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    			}
    			pos++
    		}
    	}
    	if !bytes.Equal(wantData, buf) {
    		t.Fatalf("want data %x, got %x", wantData, buf)
    	}
    }
    
    func TestNoSectionOverlaps(t *testing.T) {
    	// Ensure cmd/link outputs sections without overlaps.
    	switch runtime.GOOS {
    	case "aix", "android", "darwin", "ios", "js", "plan9", "windows", "wasip1":
    		t.Skipf("cmd/link doesn't produce ELF binaries on %s", runtime.GOOS)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// Storage is the interface for the underlying storage for the
    	// resource. It is wrapped into a "DryRunnableStorage" that will
    	// either pass-through or simply dry-run.
    	Storage DryRunnableStorage
    	// StorageVersioner outputs the <group/version/kind> an object will be
    	// converted to before persisted in etcd, given a list of possible
    	// kinds of the object.
    	// If the StorageVersioner is nil, apiserver will leave the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    func (c *piController) next(input, setpoint, period float64) (float64, bool) {
    	// Compute the raw output value.
    	prop := c.kp * (setpoint - input)
    	rawOutput := prop + c.errIntegral
    
    	// Clamp rawOutput into output.
    	output := rawOutput
    	if isInf(output) || isNaN(output) {
    		// The input had a large enough magnitude that either it was already
    		// overflowed, or some operation with it overflowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/proxy/endpointschangetracker_test.go

    			},
    		},
    		expected: make(map[types.NamespacedName]sets.Set[string], 0),
    	}}
    
    	for tci, tc := range testCases {
    		// outputs
    		localIPs := tc.endpointsMap.getLocalReadyEndpointIPs()
    
    		if !reflect.DeepEqual(localIPs, tc.expected) {
    			t.Errorf("[%d] expected %#v, got %#v", tci, tc.expected, localIPs)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  9. docs/ru/docs/deployment/docker.md

    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    # (9)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<V> future) {
        if (future.isDone()) {
          return future;
        }
        NonCancellationPropagatingFuture<V> output = new NonCancellationPropagatingFuture<>(future);
        future.addListener(output, directExecutor());
        return output;
      }
    
      /** A wrapped future that does not propagate cancellation to its delegate. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top