Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,137 for begins (0.1 sec)

  1. src/go/printer/gobuild.go

    	// (We'll add another blank line after our comment block.)
    	// When we start dropping // +build comments, we can skip over /* */ comments too.
    	// Note that we are processing tabwriter input, so every comment
    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    }
    
    // NewReader creates a WebSocket pipe that will copy the contents of r to a provided
    // WebSocket connection. If ping is true, a zero length message will be sent to the client
    // before the stream begins reading.
    //
    // The protocols parameter maps subprotocol names to StreamProtocols. The empty string
    // subprotocol name is used if websocket.Config.Protocol is empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/pe.go

    		return nil, err
    	}
    	return &peFile{f}, nil
    }
    
    func (f *peFile) symbols() ([]Sym, error) {
    	// Build sorted list of addresses of all symbols.
    	// We infer the size of a symbol by looking at where the next symbol begins.
    	var addrs []uint64
    
    	imageBase, _ := f.imageBase()
    
    	var syms []Sym
    	for _, s := range f.pe.Symbols {
    		const (
    			N_UNDEF = 0  // An undefined (extern) symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. src/encoding/json/indent.go

    // for some set of compacted JSON with the indent being a single tab.
    // Specify a growth factor slightly larger than what is observed
    // to reduce probability of allocation in appendIndent.
    // A factor no higher than 2 ensures that wasted space never exceeds 50%.
    const indentGrowthFactor = 2
    
    // Indent appends to dst an indented form of the JSON-encoded src.
    // Each element in a JSON object or array begins on a new,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    In general script files should have short names: a few words, not whole sentences.
    The first word should be the general category of behavior being tested,
    often the name of a go subcommand (list, build, test, ...) or concept (vendor, pattern).
    
    Each script is a text archive (go doc internal/txtar).
    The script begins with an actual command script to run
    followed by the content of zero or more supporting files to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/internal/testenv/testenv_test.go

    	// of emulation "emu" will appear as a "host" suffix after the GOOS and
    	// GOARCH because it modifies the run environment in such a way that it
    	// the target GOOS and GOARCH may not match the host. This suffix always
    	// begins with an underscore.
    	return strings.HasSuffix(builderName, "-emu") || strings.Contains(builderName, "_emu")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/net/fd_windows.go

    	}
    
    	if ctx.Done() != nil {
    		// Propagate the Context's deadline and cancellation.
    		// If the context is already done, or if it has a nonzero deadline,
    		// ensure that that is applied before the call to ConnectEx begins
    		// so that we don't return spurious connections.
    		defer fd.pfd.SetWriteDeadline(noDeadline)
    
    		if ctx.Err() != nil {
    			fd.pfd.SetWriteDeadline(aLongTimeAgo)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

       */
      public void testRegularFutureInterrupted() throws ExecutionException {
    
        /*
         * Here's the order of events that we want.
         *
         * 1. The client thread begins to block on a get() call to a future.
         * 2. The client thread is interrupted sometime before the result would be
         *   available.
         * 3. We expect the client's get() to throw an InterruptedException.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/test2json/main.go

    //	fail   - the test or benchmark failed
    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    // When the go command runs parallel tests in -json mode, events from
    // different tests are interlaced; the Package field allows readers to
    // separate them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof.go

    // and controls where the stack trace begins. Passing skip=0 begins the
    // trace in the function calling Add. For example, given this
    // execution stack:
    //
    //	Add
    //	called from rpc.NewClient
    //	called from mypkg.Run
    //	called from main.main
    //
    // Passing skip=0 begins the stack trace at the call to Add inside rpc.NewClient.
    // Passing skip=1 begins the stack trace at the call to NewClient inside mypkg.Run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top