Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cleanAll (0.09 sec)

  1. src/net/http/fs_test.go

    		t.Fatalf("http client error: %v", err)
    	}
    	_, err = io.Copy(io.Discard, res.Body)
    	if err != nil {
    		t.Fatalf("client body read error: %v", err)
    	}
    	res.Body.Close()
    
    	// Force child to exit cleanly.
    	Post(fmt.Sprintf("http://%s/quit", ln.Addr()), "", nil)
    	child.Wait()
    
    	rx := regexp.MustCompile(`\b(n64:)?sendfile(64)?\(`)
    	out := buf.String()
    	if !rx.MatchString(out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	var wg sync.WaitGroup
    	// We use bgrun and immediately wait for it instead of calling run() synchronously.
    	// This executes all jobs through the bgwork channel and allows the process
    	// to exit cleanly in case an error occurs.
    	bgrun(&wg, dir, compile...)
    	bgwait(&wg)
    
    	// Compile the files.
    	for _, p := range sfiles {
    		// Assembly file for a Go package.
    		compile := asmArgs[:len(asmArgs):len(asmArgs)]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. cmd/iam.go

    	sys.iamRefreshInterval = iamRefreshInterval
    	// Initialize IAM store
    	sys.initStore(objAPI, etcdClient)
    	sys.Unlock()
    
    	retryCtx, cancel := context.WithCancel(ctx)
    
    	// Indicate to our routine to exit cleanly upon return.
    	defer cancel()
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	// Migrate storage format if needed.
    	for {
    		// Migrate IAM configuration, if necessary.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    // certificate structs in this file.
    //
    // Notably, we include issuer as an asn1.RawValue, mirroring the behavior of
    // tbsCertificate and allowing raw (unparsed) subjects to be passed cleanly.
    type certificateList struct {
    	TBSCertList        tbsCertificateList
    	SignatureAlgorithm pkix.AlgorithmIdentifier
    	SignatureValue     asn1.BitString
    }
    
    type tbsCertificateList struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top