Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 216 for original (0.54 sec)

  1. src/crypto/aes/gcm_s390x.go

    // slice with the contents of the given slice followed by that many bytes and a
    // second slice that aliases into it and contains only the extra bytes. If the
    // original slice has sufficient capacity then no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    type JSONTree map[string]map[string]interface{}
    
    // A TextEdit describes the replacement of a portion of a file.
    // Start and End are zero-based half-open indices into the original byte
    // sequence of the file, and New is the new text.
    type JSONTextEdit struct {
    	Filename string `json:"filename"`
    	Start    int    `json:"start"`
    	End      int    `json:"end"`
    	New      string `json:"new"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/os/signal/signal_cgo_test.go

    	// foreground process group. This process will take over as foreground
    	// from subprocess 2 (step 4 above).
    	// - GO_TEST_TERMINAL_SIGNALS=2: This process create a child process
    	// group of subprocess 1, and is the original foreground process group
    	// for the PTY. This subprocess is the one that is SIGSTOP'd.
    
    	if runtime.GOOS == "dragonfly" {
    		t.Skip("skipping: wait hangs on dragonfly; see https://go.dev/issue/56132")
    	}
    
    	scale := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    		gover.ModSort(roots)
    
    		// First, we extend the graph so that it includes the selected version
    		// of every root. The upgraded roots are in addition to the original
    		// roots, so we will have enough information to trace a path to each
    		// conflict we discover from one or more of the original roots.
    		mg, upgradedRoots, err := extendGraph(ctx, rootPruning, roots, selectedRoot)
    		if err != nil {
    			var tooNew *gover.TooNewError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/sort/sort.go

    	//
    	// If both Less(i, j) and Less(j, i) are false,
    	// then the elements at index i and j are considered equal.
    	// Sort may place equal elements in any order in the final result,
    	// while Stable preserves the original input order of equal elements.
    	//
    	// Less must describe a transitive ordering:
    	//  - if both Less(i, j) and Less(j, k) are true, then Less(i, k) must be true as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/runtime/slice.go

    //	newLen = new length (= oldLen + num)
    //	oldCap = original slice's capacity.
    //	   num = number of elements being added
    //	    et = element type
    //
    // return values:
    //
    //	newPtr = pointer to the new backing store
    //	newLen = same value as the argument
    //	newCap = capacity of the new backing store
    //
    // Requires that uint(newLen) > uint(oldCap).
    // Assumes the original slice length is newLen - num
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/net/http/request_test.go

    	// but we don't care about it)
    	req.Header = nil
    	back.Header = nil
    	if !reflect.DeepEqual(req, back) {
    		t.Errorf("Original request doesn't match Request read back.")
    		t.Logf("Original: %#v", req)
    		t.Logf("Original.URL: %#v", req.URL)
    		t.Logf("Wrote: %s", out.String())
    		t.Logf("Read back (doesn't match Original): %#v", back)
    	}
    }
    
    type responseWriterJustWriter struct {
    	io.Writer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate.go

    	-run=""
    		if non-empty, specifies a regular expression to select
    		directives whose full original source text (excluding
    		any trailing spaces and final newline) matches the
    		expression.
    
    	-skip=""
    		if non-empty, specifies a regular expression to suppress
    		directives whose full original source text (excluding
    		any trailing spaces and final newline) matches the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/math/big/ftoa.go

    	var upper decimal
    	upper.init(tmp.add(mant, natOne), exp)
    
    	// The upper and lower bounds are possible outputs only if
    	// the original mantissa is even, so that ToNearestEven rounding
    	// would round to the original mantissa and not the neighbors.
    	inclusive := mant[0]&2 == 0 // test bit 1 since original mantissa was shifted by 1
    
    	// Now we can figure out the minimum number of digits required.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    }
    
    // safeExpr returns a safe version of n.
    // The definition of safe is that n can appear multiple times
    // without violating the semantics of the original program,
    // and that assigning to the safe version has the same effect
    // as assigning to the original n.
    //
    // The intended use is to apply to x when rewriting x += y into x = x + y.
    func (o *orderState) safeExpr(n ir.Node) ir.Node {
    	switch n.Op() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top