Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for Write (0.28 sec)

  1. src/crypto/tls/handshake_server_test.go

    	if err != nil {
    		return nil, err
    	}
    	defer in.Close()
    	return parseTestData(in)
    }
    
    func (test *serverTest) run(t *testing.T, write bool) {
    	var clientConn, serverConn net.Conn
    	var recordingConn *recordingConn
    	var childProcess *exec.Cmd
    
    	if write {
    		var err error
    		recordingConn, childProcess, err = test.connFromCommand()
    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    	// Get current region.
    	region := globalSite.Region()
    	if region != globalMinioDefaultRegion {
    		encodedSuccessResponse = encodeResponse(LocationResponse{
    			Location: region,
    		})
    	}
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // ListMultipartUploadsHandler - GET Bucket (List Multipart uploads)
    // -------------------------
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. src/runtime/map.go

    				continue
    			}
    			if h.flags&hashWriting != 0 {
    				fatal("concurrent map read and map write")
    			}
    			k := add(unsafe.Pointer(b), dataOffset+offi*uintptr(t.KeySize))
    			if t.IndirectKey() {
    				k = *((*unsafe.Pointer)(k))
    			}
    			if s.len >= s.cap {
    				fatal("concurrent map read and map write")
    			}
    			typedmemmove(t.Key, add(s.array, uintptr(s.len)*uintptr(t.Key.Size())), k)
    			s.len++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs);
    }
    
    // TODO(b/168035831): Model db_uri read/write.
    def TF_CreateSummaryDbWriterOp : TF_Op<"CreateSummaryDbWriter", []> {
      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    		},
    		{
    			`<script>document.write("<p>foo</p>");`,
    			context{state: stateJS, element: elementScript},
    		},
    		{
    			`<script>document.write("<p>foo<\/script>");`,
    			context{state: stateJS, element: elementScript},
    		},
    		{
    			// <script and </script tags are escaped, so </script> should not
    			// cause us to exit the JS state.
    			`<script>document.write("<script>alert(1)</script>");`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		fatalf("internal error: writeOutput: srcfile contains unexpected newline character: %q", srcfile)
    	}
    	fmt.Fprintf(fgo1, "//line %s:1:1\n", srcfile)
    	fgo1.Write(f.Edit.Bytes())
    
    	// While we process the vars and funcs, also write gcc output.
    	// Gcc output starts with the preamble.
    	fmt.Fprintf(fgcc, "%s\n", builtinProlog)
    	fmt.Fprintf(fgcc, "%s\n", f.Preamble)
    	fmt.Fprintf(fgcc, "%s\n", gccProlog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			if r.URL.Path == rquestTimesOutPath {
    				<-callerRoundTripDoneCh
    
    				// we expect the timeout handler to have timed out this request by now and any attempt
    				// to write to the response should return a http.ErrHandlerTimeout error.
    				_, innerHandlerWriteErr := w.Write([]byte("foo"))
    				reqHandlerErrCh <- innerHandlerWriteErr
    
    				panic(http.ErrAbortHandler)
    			}
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

      //
      // 2. In done() where we may propagate cancellation to the input. In this case it is _not_ fine.
      //    There is currently nothing that enforces that the write to inputFuture in the constructor is
      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server_test.go

    				}
    
    				if test.stdout {
    					_, err := out.Write([]byte(expectedStdout))
    					assert.NoError(t, err, "writing to stdout")
    					out.Close()
    					<-clientStdoutReadDone
    				}
    
    				if !test.tty && test.stderr {
    					_, err := stderr.Write([]byte(expectedStderr))
    					assert.NoError(t, err, "writing to stderr")
    					stderr.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top