Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for writing (0.13 sec)

  1. src/net/http/server.go

    	// needed request body data before writing the response. Once the
    	// headers have been flushed (due to either an explicit Flusher.Flush
    	// call or writing enough data to trigger a flush), the request body
    	// may be unavailable. For HTTP/2 requests, the Go HTTP server permits
    	// handlers to continue to read the request body while concurrently
    	// writing the response. However, such behavior may not be supported
    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. src/net/http/serve_test.go

    					if !test.readBody {
    						// Server likely already hung up on us.
    						// See larger comment below.
    						t.Logf("On test %#v, acceptable error writing request body: %v", test, err)
    						return
    					}
    					t.Errorf("On test %#v, error writing request body: %v", test, err)
    				}
    			}
    		}()
    		bufr := bufio.NewReader(conn)
    		line, err := bufr.ReadString('\n')
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    	cleanup = func() { os.Remove(tf.Name()) }
    	var buf bytes.Buffer
    	for _, arg := range cmd.Args[1:] {
    		fmt.Fprintf(&buf, "%s\n", encodeArg(arg))
    	}
    	if _, err := tf.Write(buf.Bytes()); err != nil {
    		tf.Close()
    		cleanup()
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // -replace, -dropreplace, -retract, and -dropretract editing flags may be
    // repeated, and the changes are applied in the order given.
    //
    // The -print flag prints the final go.mod in its text format instead of
    // writing it back to go.mod.
    //
    // The -json flag prints the final go.mod file in JSON format instead of
    // writing it back to go.mod. The JSON output corresponds to these Go types:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		isDefaultWaitingStatus := status.State.Waiting != nil && status.State.Waiting.Reason == ContainerCreating
    		if hasInitContainers {
    			isDefaultWaitingStatus = status.State.Waiting != nil && status.State.Waiting.Reason == PodInitializing
    		}
    		if !isDefaultWaitingStatus {
    			// the status was written, don't override
    			continue
    		}
    		if status.LastTerminationState.Terminated != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    // Issues 4677, 18241, and 17844. If we try to reuse a connection that the
    // server is in the process of closing, we may end up successfully writing out
    // our request (or a portion of our request) only to find a connection error
    // when we try to read from (or finish writing to) the socket.
    //
    // NOTE: we resend a request only if:
    //   - we reused a keep-alive connection
    //   - we haven't yet received any header data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		apiPodStatus.Message = runnable.Message
    		// Waiting containers are not creating.
    		const waitingReason = "Blocked"
    		for _, cs := range apiPodStatus.InitContainerStatuses {
    			if cs.State.Waiting != nil {
    				cs.State.Waiting.Reason = waitingReason
    			}
    		}
    		for _, cs := range apiPodStatus.ContainerStatuses {
    			if cs.State.Waiting != nil {
    				cs.State.Waiting.Reason = waitingReason
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    			expectedState: map[string]v1.ContainerState{
    				"without-old-record": {Waiting: &v1.ContainerStateWaiting{
    					Reason: ContainerCreating,
    				}},
    				"with-old-record": {Waiting: &v1.ContainerStateWaiting{
    					Reason: ContainerCreating,
    				}},
    			},
    			expectedInitState: map[string]v1.ContainerState{
    				"without-old-record": {Waiting: &v1.ContainerStateWaiting{
    					Reason: PodInitializing,
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top