Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for langs3 (0.13 sec)

  1. .github/workflows/build-docs.yml

          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
          - changes
          - langs
        if: ${{ needs.changes.outputs.docs == 'true' }}
        runs-on: ubuntu-latest
        strategy:
          matrix:
            lang: ${{ fromJson(needs.langs.outputs.langs) }}
        steps:
          - name: Dump GitHub context
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                        classpath "org.apache.commons:commons-lang3:3.8.1"
                    }
                }
            """
    
            when:
            run("tasks")
    
            then:
            typeHierarchyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
            dependencyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
            mergeAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

        requires com.google.gson;          // real module
                           ^
    /home/user/gradle/samples/src/main/java/module-info.java:3: error: module not found: org.apache.commons.lang3
        requires org.apache.commons.lang3; // automatic module
                                   ^
    2 errors
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':compileJava'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

            then:
            projectA.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar' ] as Set
            projectA.projectDependencies.collect { it.path } as Set == [ 'b' ] as Set
            projectB.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar', 'commons-io-1.4.jar' ] as Set
            projectB.projectDependencies.collect { it.path } as Set == [ 'c', 'd' ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            and: "a dependency has been added to the implementation configuration"
            succeeds("dependencies", "--configuration", "implementation")
            outputContains("org.apache.commons:commons-lang3:3.12.0")
    
            where:
            typeSafeProjectAccessors << [true, false]
        }
    
        def 'can configure an extension using DependencyCollector in declarative DSL with @Restricted methods available on supertype'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                ${mavenCentralRepository()}
    
                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.4'
                    testImplementation 'junit:junit:4.13'
                }
            """
            file('src/main/java/Text.java') << '''import org.apache.commons.lang3.StringUtils;
                public class Text {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. fess-crawler/pom.xml

    			<artifactId>commons-io</artifactId>
    			<version>${commons.io.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.commons</groupId>
    			<artifactId>commons-lang3</artifactId>
    			<version>${commons.lang3.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.commons</groupId>
    			<artifactId>commons-text</artifactId>
    			<version>${commons.text.version}</version>
    		</dependency>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.regression.corefeature
    
    import org.apache.commons.io.FileUtils
    import org.apache.commons.lang3.RandomStringUtils
    import org.gradle.performance.AbstractCrossVersionPerformanceTest
    import org.gradle.performance.annotations.RunFor
    import org.gradle.performance.annotations.Scenario
    import org.gradle.profiler.BuildContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        _compileFreeDebug 'org.apache.commons:commons-lang3:3.5'
                    }
                    task checkDebug(dependsOn: configurations._compileFreeDebug) {
                        def files = configurations._compileFreeDebug
                        doLast {
                           assert files.collect { it.name }.sort { it } == ['b-transitive.jar', 'c-foo.jar', 'commons-lang3-3.5.jar']
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import javax.annotation.PreDestroy;
    
    import org.apache.commons.lang3.LocaleUtils;
    import org.apache.commons.lang3.StringUtils;
    import org.apache.logging.log4j.Level;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.logging.log4j.core.config.Configurator;
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.lang.ThreadUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top