Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for beginning (0.54 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/CancellationCrossVersionSpec.groovy

    class CancellationCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            settingsFile << '''
    rootProject.name = 'cancelling'
    '''
        }
    
        def "early cancel stops the build before beginning"() {
            buildFile << """
    throw new GradleException("should not run")
    """
            def cancel = GradleConnector.newCancellationTokenSource()
            def resultHandler = new TestResultHandler()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/encoding/json/scanner.go

    		return scanBeginLiteral
    	case '0': // beginning of 0.123
    		s.step = state0
    		return scanBeginLiteral
    	case 't': // beginning of true
    		s.step = stateT
    		return scanBeginLiteral
    	case 'f': // beginning of false
    		s.step = stateF
    		return scanBeginLiteral
    	case 'n': // beginning of null
    		s.step = stateN
    		return scanBeginLiteral
    	}
    	if '1' <= c && c <= '9' { // beginning of 1234.5
    		s.step = state1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/structs/doc.go

    // Package structs defines marker types that can be used as struct fields
    // to modify the properties of a struct.
    //
    // By convention, a marker type should be used as the type of a field
    // named "_", placed at the beginning of a struct type definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 431 bytes
    - Viewed (0)
  4. src/encoding/json/stream.go

    	var context string
    	switch dec.tokenState {
    	case tokenTopValue:
    		context = " looking for beginning of value"
    	case tokenArrayStart, tokenArrayValue, tokenObjectValue:
    		context = " looking for beginning of value"
    	case tokenArrayComma:
    		context = " after array element"
    	case tokenObjectKey:
    		context = " looking for beginning of object key string"
    	case tokenObjectColon:
    		context = " after object key"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

        }
    
        /**
         * Returns the optional comment to add at the beginning of the properties file.
         */
        @Nullable
        @Optional
        @Input
        public String getComment() {
            return comment;
        }
    
        /**
         * Sets the optional comment to add at the beginning of the properties file.
         */
        public void setComment(@Nullable String comment) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top