Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 258 for checkDep (0.15 sec)

  1. src/cmd/compile/internal/types2/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() syntax.Pos { return s.pos }
    func (s *Scope) End() syntax.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/go/types/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() token.Pos { return s.pos }
    func (s *Scope) End() token.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. android/pom.xml

        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
        <errorprone.version>2.28.0</errorprone.version>
        <j2objc.version>3.0.0</j2objc.version>
        <javac.version>9+181-r4173-1</javac.version>
        <!-- Empty for all JDKs but 9-12 -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pom.xml

        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
        <errorprone.version>2.28.0</errorprone.version>
        <j2objc.version>3.0.0</j2objc.version>
        <javac.version>9+181-r4173-1</javac.version>
        <!-- Empty for all JDKs but 9-12 -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            def m4 = mavenHttpRepo.module('org.foo', 'rock').dependsOn(m3).publish()
    
            m1.allowAll()
            m2.allowAll()
            m3.pom.expectGetBroken()
            m4.allowAll()
    
            when:
            fails "checkDeps"
    
            then:
            failedResolve.assertFailurePresent(failure)
            def op = operations.first(ResolveConfigurationDependenciesBuildOperationType)
            op.details.configurationName == "compileClasspath"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # shellcheck disable=SC2039,SC3045
            MAX_FD=\$( ulimit -H -n ) ||
                warn "Could not query maximum file descriptor limit"
        esac
        case \$MAX_FD in  #(
          '' | soft) :;; #(
          *)
            # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
            # shellcheck disable=SC2039,SC3045
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    	parent    *Scope
    	pos       syntax.Pos
    	pkg       *Package
    	name      string
    	typ       Type
    	order_    uint32
    	color_    color
    	scopePos_ syntax.Pos
    }
    
    // color encodes the color of an object (see Checker.objDecl for details).
    type color uint32
    
    // An object may be painted in one of three colors.
    // Color values other than white or black are considered grey.
    const (
    	white color = iota
    	black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.notMatched(c.id, _)
            0 * selectedComponentResult.notMatched(a.id, _) // versions are checked latest first
            1 * selectedComponentResult.matches(b.id)
            0 * _
    
        }
    
        def "chooses newest non rejected matching version without requiring metadata"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    // reports whether the call is valid, with *x holding the result;
    // but x.expr is not set. If the call is invalid, the result is
    // false, and *x is undefined.
    func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (_ bool) {
    	argList := call.ArgList
    
    	// append is the only built-in that permits the use of ... for the last argument
    	bin := predeclaredFuncs[id]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            void run() throws E;
        }
    
        /**
         * Turns a {@link ThrowingFactory} into a {@link Factory}.
         * The compiler is happy with the casting that allows to hide the checked exception.
         * The runtime is happy with the casting because the checked exception type information is captured in a generic type parameter which gets erased.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top