Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for STARTED (0.12 sec)

  1. cmd/test-utils_test.go

    	cancel       context.CancelFunc
    	rawDiskPaths []string
    }
    
    // UnstartedTestServer - Configures a temp FS/Erasure backend,
    // initializes the endpoints and configures the test server.
    // The server should be started using the Start() method.
    func UnstartedTestServer(t TestErrHandler, instanceType string) TestServer {
    	ctx, cancel := context.WithCancel(context.Background())
    	// create an instance of TestServer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    			src = subtract1(src)
    			for npattern < n {
    				pattern <<= 8
    				pattern |= uintptr(*src)
    				src = subtract1(src)
    				npattern += 8
    			}
    
    			// We started with the whole bit output buffer,
    			// and then we loaded bits from whole bytes.
    			// Either way, we might now have too many instead of too few.
    			// Discard the extra.
    			if npattern > n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    		return dnsmessage.Message{}, os.ErrDeadlineExceeded
    	}}
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    
    	// The timeout here is less than the timeout used by the server,
    	// so the goroutine started to query the (fake) server will hang
    	// around after this test is done if we don't call dnsWaitGroup.Wait.
    	ctx, cancel := context.WithTimeout(context.Background(), 2*time.Microsecond)
    	defer cancel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // returns that object along with a flag indicating that this was a heavy
    // weight allocation. If it is a heavy weight allocation the caller must
    // determine whether a new GC cycle needs to be started or if the GC is active
    // whether this goroutine needs to assist the GC.
    //
    // Must run in a non-preemptible context since otherwise the owner of
    // c could change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	var wg sync.WaitGroup
    	sema := make(chan struct{}, runtime.GOMAXPROCS(0))
    
    	// Kick off generation of .debug_frame, since it doesn't have
    	// any entanglements and can be started right away.
    	wg.Add(1)
    	go func() {
    		sema <- struct{}{}
    		defer func() {
    			<-sema
    			wg.Done()
    		}()
    		frameSec = d.writeframes(frameSym)
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    		return nil, nil, nil, nil, err
    	}
    
    	// OpenSSL does print an "ACCEPT" banner, but it does so *before*
    	// opening the listening socket, so we can't use that to wait until it
    	// has started listening. Thus we are forced to poll until we get a
    	// connection.
    	var tcpConn net.Conn
    	for i := uint(0); i < 5; i++ {
    		tcpConn, err = net.DialTCP("tcp", nil, &net.TCPAddr{
    			IP:   net.IPv4(127, 0, 0, 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	MOVQ	$_rt0_amd64_lib_go(SB), AX
    	MOVQ	AX, 8(SP)			// fn
    	CALL	runtime·newosproc0(SB)
    	ADJSP	$-16
    
    restore:
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    // _rt0_amd64_lib_go initializes the Go runtime.
    // This is started in a separate thread by _rt0_amd64_lib.
    TEXT _rt0_amd64_lib_go(SB),NOSPLIT,$0
    	MOVQ	_rt0_amd64_lib_argc<>(SB), DI
    	MOVQ	_rt0_amd64_lib_argv<>(SB), SI
    	JMP	runtime·rt0_go(SB)
    
    DATA _rt0_amd64_lib_argc<>(SB)/8, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    // TODO-RC redo demo so it no longer shows as incubating
    image::configuration-cache/running-help.gif[]
    
    [[config_cache:usage]]
    == Using the configuration cache
    
    It is recommended to get started with the simplest task invocation possible.
    Running `help` with the configuration cache enabled is a good first step:
    
    ----
    ❯ gradle --configuration-cache help
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	if err := r.Header.fixLen(msg, lenOff, preLen); err != nil {
    		return oldMsg, err
    	}
    	return msg, nil
    }
    
    // A Parser allows incrementally parsing a DNS message.
    //
    // When parsing is started, the Header is parsed. Next, each Question can be
    // either parsed or skipped. Alternatively, all Questions can be skipped at
    // once. When all Questions have been parsed, attempting to parse Questions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Let's say you want to add a file `build-info.properties` to all your produced jar files which contains information about the build, e.g. the timestamp when the build started or some ID to identify the CI job that published the artifact.
    This file is only for auditing purposes, and has no effect on the outcome of running tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top