Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 343 for original (1.32 sec)

  1. 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)
  2. 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)
  3. src/runtime/time_fake.go

    	// First, lock to avoid interleaving writes.
    	lock(&faketimeState.lock)
    
    	// If the current fd doesn't match the fd of the previous write,
    	// ensure that the timestamp is strictly greater. That way, we can
    	// recover the original order even if we read the fds separately.
    	t := faketimeState.lastfaketime
    	if fd != faketimeState.lastfd {
    		t++
    		faketimeState.lastfd = fd
    	}
    	if faketime > t {
    		t = faketime
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.5K 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/strings/reader.go

    // Len returns the number of bytes of the unread portion of the
    // string.
    func (r *Reader) Len() int {
    	if r.i >= int64(len(r.s)) {
    		return 0
    	}
    	return int(int64(len(r.s)) - r.i)
    }
    
    // Size returns the original length of the underlying string.
    // Size is the number of bytes available for reading via [Reader.ReadAt].
    // The returned value is always the same and is not affected by calls
    // to any other method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/labels.go

    		}
    		if x == 20 {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    		if x == 21 {
    			goto L1
    		}
    	}
    }
    
    // Additional tests not in the original files.
    
    func f2() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	if x == 0 {
    		for {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    	}
    }
    
    func f3() {
    L1:
    L2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_64(text, freq, bucket, sa, numLMS)
    	}
    	induceL_8_64(text, sa, freq, bucket)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/strconv/ctoa.go

    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    // It rounds the result assuming that the original was obtained from a complex
    // value of bitSize bits, which must be 64 for complex64 and 128 for complex128.
    func FormatComplex(c complex128, fmt byte, prec, bitSize int) string {
    	if bitSize != 64 && bitSize != 128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/vendor.go

    		} else {
    			fmt.Fprintf(vendErrors, "\n\t%s@%s: %s", mod.Path, mod.Version, detail)
    		}
    	}
    
    	// Iterate over the Require directives in their original (not indexed) order
    	// so that the errors match the original file.
    	for _, modFile := range modFiles {
    		for _, r := range modFile.Require {
    			if !vendorMeta[r.Mod].Explicit {
    				if pre114 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top