Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 516 for beginning (0.28 sec)

  1. src/cmd/go/testdata/script/mod_verify_work.txt

    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    
    -- go.work --
    go 1.21
    
    use (
        ./a
        ./b
    )
    -- a/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_goroot_PATH.txt

    # https://go.dev/issue/51473: to avoid the need for tests to rely on
    # runtime.GOROOT, 'go test' should run the test with its own GOROOT/bin
    # at the beginning of $PATH.
    
    [short] skip
    
    [!GOOS:plan9] env PATH=
    [GOOS:plan9] env path=
    go test .
    
    [!GOOS:plan9] env PATH=$WORK${/}bin
    [GOOS:plan9] env path=$WORK${/}bin
    go test .
    
    -- go.mod --
    module example
    
    go 1.19
    -- example_test.go --
    package example
    
    import (
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 795 bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface BuildTree extends BuildSession {}
    
        /**
         * These services are created once per {@code org.gradle.api.initialization.Settings} the beginning of the build invocation
         * These services are closed at the end of the build invocation.
         *
         * <p>{@link BuildTree} and parent scope services are visible to {@link Build} scope services, but not vice versa.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue36437.go

    // license that can be found in the LICENSE file.
    
    // Tests that when non-existent files are passed to the
    // compiler, such as in:
    //    go tool compile foo
    // we don't print the beginning position:
    //    foo:0: open foo: no such file or directory
    // but instead omit it and print out:
    //    open foo: no such file or directory
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/OffsetInFileLocation.java

     * <p>
     * The coordinates are expected to be zero indexed.
     */
    public interface OffsetInFileLocation extends FileLocation {
    
        /**
         * The global offset from the beginning of the file.
         *
         * @return the zero-indexed the offset
         */
        int getOffset();
    
        /**
         * The content of the content starting from {@link #getOffset()}.
         *
         * @return the length
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/strings/reader.go

    	}
    	b := r.s[r.i]
    	r.i++
    	return b, nil
    }
    
    // UnreadByte implements the [io.ByteScanner] interface.
    func (r *Reader) UnreadByte() error {
    	if r.i <= 0 {
    		return errors.New("strings.Reader.UnreadByte: at beginning of string")
    	}
    	r.prevRune = -1
    	r.i--
    	return nil
    }
    
    // ReadRune implements the [io.RuneReader] interface.
    func (r *Reader) ReadRune() (ch rune, size int, err error) {
    	if r.i >= int64(len(r.s)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        }
    
        /**
         * Moves the cursor to the beginning of the line below.
         *
         * @return this Ansi instance
         */
        public Ansi cursorDownLine() {
            return appendEscapeSequence('E');
        }
    
        /**
         * Moves the cursor to the beginning of the n-th line below. If the parameter n is negative it
         * moves the cursor to the beginning of the n-th line above.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue20298.go

    // Issue 20298: "imported and not used" error report order was non-deterministic.
    // This test works by limiting the number of errors (-e=0)
    // and checking that the errors are all at the beginning.
    
    package p
    
    import (
    	"bufio"       // ERROR "imported and not used"
    	"bytes"       // ERROR "imported and not used"
    	"crypto/x509" // ERROR "imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 21:14:56 UTC 2017
    - 984 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionProvider.kt

                    // been published yet. In that case we adjust the constraint to include
                    // source distributions beginning from the previous major version.
                    "${previous(major)}.0"
                }
                else -> {
                    // Otherwise include source distributions beginning from the previous minor version only.
                    "$major.${previous(minor)}"
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    	// method to return a handle that uses ordinary synchronous I/O.”
    	// However, LockFileEx still requires an OVERLAPPED structure,
    	// which contains the file offset of the beginning of the lock range.
    	// We want to lock the entire file, so we leave the offset as zero.
    	ol := new(syscall.Overlapped)
    
    	err := windows.LockFileEx(syscall.Handle(f.Fd()), uint32(lt), reserved, allBytes, allBytes, ol)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top