Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for reuse (0.28 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    				v.AuxInt = 1
    				if b.Func.pass.debug > 0 {
    					b.Func.Warnl(v.Pos, "Proved %v does not need fix-up", v.Op)
    				}
    			}
    		}
    		// Fold provable constant results.
    		// Helps in cases where we reuse a value after branching on its equality.
    		for i, arg := range v.Args {
    			switch arg.Op {
    			case OpConst64, OpConst32, OpConst16, OpConst8:
    				continue
    			}
    			lim, ok := ft.limits[arg.ID]
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    		}
    		if pState.status != go122.ProcSyscall {
    			return curCtx, false, fmt.Errorf("proc %d in unexpected state %s during %s", curCtx.P, pState.status, go122.EventString(ev.typ))
    		}
    		// See the go122-create-syscall-reuse-thread-id test case for more details.
    		pState.status = go122.ProcSyscallAbandoned
    		newCtx.P = NoProc
    
    		// Queue an extra self-ProcSteal event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// where the HTTP response reading goroutine would otherwise not observe
    	// the EOF until its next read, by which time a client goroutine might
    	// have already tried to reuse the HTTP connection for a new request.
    	// See https://golang.org/cl/76400046 and https://golang.org/issue/3514
    	if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&
    		recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	assertLockHeld(&profMemFutureLock[index])
    	head := (*bucket)(mbuckets.Load())
    	for b := head; b != nil; b = b.allnext {
    		mp := b.mp()
    
    		// Flush cycle C into the published profile and clear
    		// it for reuse.
    		mpc := &mp.future[index]
    		mp.active.add(mpc)
    		*mpc = memRecordCycle{}
    	}
    }
    
    // mProf_PostSweep records that all sweep frees for this GC cycle have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	})).ts
    	c := ts.Client()
    	tr := c.Transport.(*Transport)
    
    	// Do one initial successful request to create an idle TCP connection
    	// for the subsequent request to reuse. (The Transport only retries
    	// requests on reused connections.)
    	res, err := c.Get(ts.URL + "/ping")
    	if err != nil {
    		t.Fatal(err)
    	}
    	res.Body.Close()
    
    	var readCallsAtomic int32
    	var closeCallsAtomic int32 // atomic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/time/time.go

    // that the first leap year is the 4th year, the first missed leap year
    // is the 100th year, and the missed missed leap year is the 400th year.
    // So we'd prefer instead to print a calendar for 2001-2400 and reuse it
    // for 2401-2800.
    //
    // Finally, it's convenient if the delta between the Unix epoch and
    // long-ago epoch is representable by an int64 constant.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    }
    
    // Test semantics of pre-filled data, such as struct fields, map elements,
    // slices, and arrays.
    // Issues 4900 and 8837, among others.
    func TestPrefilled(t *testing.T) {
    	// Values here change, cannot reuse table across runs.
    	tests := []struct {
    		CaseName
    		in  string
    		ptr any
    		out any
    	}{{
    		CaseName: Name(""),
    		in:       `{"X": 1, "Y": 2}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	// so that sa can hold both the subproblem and its suffix array.
    	// Nearly all the time, however, the subproblem has length < len(sa)/3,
    	// in which case there is a subproblem-sized middle of sa that
    	// we can reuse for temporary space (saTmp).
    	// When recurse_64 is called from sais_8_64, oldTmp is length 512
    	// (from text_64), and saTmp will typically be much larger, so we'll use saTmp.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/map.go

    }
    
    func evacuate(t *maptype, h *hmap, oldbucket uintptr) {
    	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
    	newbit := h.noldbuckets()
    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Since JDK 11 no longer supports changing the working directory of a running process, setting the working directory of a worker via its fork options is now prohibited.
    
    All workers now use the same working directory to enable reuse.
    
    Please pass files and directories as arguments instead.
    
    [[rel4.10:aws_s3_permissions]]
    === [4.10] Publishing to AWS S3 requires new permissions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top