Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 763 for toen (0.18 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/TypeNameResolverTest.groovy

            def name = typeNameResolver.resolve('org.gradle.SomeClass', classMetaData)
    
            then:
            name == 'org.gradle.SomeClass'
            _ * classMetaData.innerClassNames >> []
        }
    
        def resolvesUnqualifiedNameToClassInSamePackage() {
            when:
            def name = typeNameResolver.resolve('SomeClass', classMetaData)
    
            then:
            name == 'org.gradle.SomeClass'
            _ * classMetaData.innerClassNames >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6K bytes
    - Viewed (0)
  2. tests/tests_all.sh

    dialects=("sqlite" "mysql" "postgres" "sqlserver" "tidb")
    
    if [[ $(pwd) == *"gorm/tests"* ]]; then
      cd ..
    fi
    
    if [ -d tests ]
    then
      cd tests
      go get -u -t ./...
      go mod download
      go mod tidy
      cd ..
    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION ]]; then
      if [ -d tests ]
      then
        cd tests
        if [[ $(uname -a) == *" arm64" ]]; then
          MSSQL_IMAGE=mcr.microsoft.com/azure-sql-edge docker-compose start || true
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/UnpackingVisitorTest.groovy

        def "resolves null"() {
            when:
            visitor.add(null)
    
            then:
            0 * context._
        }
    
        def "resolves String"() {
            def file = new File('some-file')
    
            when:
            visitor.add('path')
    
            then:
            1 * resolver.resolve('path') >> file
            1 * context.accept(_) >> { FileCollectionInternal collection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AbstractAccessTrackingMapTest.groovy

            when:
            def result = getMapUnderTestToRead().containsKey('missing')
    
            then:
            !result
            1 * onAccess.accept('missing', null)
            0 * onAccess._
        }
    
        def "aggregating method #methodName reports all map contents as inputs"() {
            when:
            operation.accept(getMapUnderTestToRead())
    
            then:
            (1.._) * onAccess.accept('existing', 'existingValue')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

            for (String token : range.split(",")) {
                if (token.startsWith("[")) {
                    ranges.add(new RangeValue(token.replace("[", ""), true));
                } else if (token.startsWith("(")) {
                    ranges.add(new RangeValue(token.replace("(", ""), false));
                } else if (token.endsWith("]")) {
                    ranges.add(new RangeValue(token.replace("]", ""), true));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

            for (String token : range.split(",")) {
                if (token.startsWith("[")) {
                    ranges.add(new RangeValue(token.replace("[", ""), true));
                } else if (token.startsWith("(")) {
                    ranges.add(new RangeValue(token.replace("(", ""), false));
                } else if (token.endsWith("]")) {
                    ranges.add(new RangeValue(token.replace("]", ""), true));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            then:
            fixture.assertStateStored()
            outputContains(output1)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output1)
    
            when: // a file is added
            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. test-site/activator

          COUNT=$(($COUNT + 1))
      done
    
      if [ "$TARGET_FILE" == "." -o "$TARGET_FILE" == ".." ]; then
        cd "$TARGET_FILE"
        TARGET_FILEPATH=
      else
        TARGET_FILEPATH=/$TARGET_FILE
      fi
    
      # make sure we grab the actual windows path, instead of cygwin's path.
      if ! is_cygwin; then
        echo "$(pwd -P)/$TARGET_FILE"
      else
        echo $(cygwinpath "$(pwd -P)/$TARGET_FILE")
      fi
    )
    }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtCompilerPluginDiagnosticImpl.kt

        firDiagnostic: KtPsiSimpleDiagnostic,
        token: KaLifetimeToken
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaCompilerPluginDiagnostic0
    
    internal class KaCompilerPluginDiagnostic1Impl(
        firDiagnostic: KtPsiDiagnosticWithParameters1<*>,
        token: KaLifetimeToken,
        override val parameter1: Any?
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaCompilerPluginDiagnostic1
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                            Hexdump.hexdump(log, token, 0, token.length);
                    }
    
                    state++;
                    break;
                case 2:
                    try {
                        Type2Message msg2 = new Type2Message(token);
    
                        if (log.level >= 4) {
                            log.println(msg2);
                            if (log.level >= 6)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.9K bytes
    - Viewed (0)
Back to top