Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for langs3 (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            'groovy'              | 'getGroovy'
            'groovy-json'         | 'getJson'
            'groovy.json'         | 'getJson'
            'groovyJson'          | 'getGroovyJson'
            'lang3'               | 'getLang3'
            'kotlinx.awesome.lib' | 'getLib'
        }
    
        def "generates an accessor for bundle #name as method #method"() {
            when:
            generate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val commonsHttpclient = "org.apache.httpcomponents:httpclient"
        val commonsIo = "commons-io:commons-io"
        val commonsLang = "commons-lang:commons-lang"
        val commonsLang3 = "org.apache.commons:commons-lang3"
        val commonsMath = "org.apache.commons:commons-math3"
        val configurationCacheReport = "org.gradle.buildtool.internal:configuration-cache-report:$configurationCacheReportVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Wildcards, indicated with `*`, can be used in the group or module name. They can be the only character or appear at the end of the group or module respectively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. 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>com.ibm.icu</groupId>
    			<artifactId>icu4j</artifactId>
    			<version>${icu4j.version}</version>
    		</dependency>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

    import java.util.regex.Pattern;
    
    import javax.annotation.Resource;
    import javax.net.ssl.SSLContext;
    
    import org.apache.commons.io.output.DeferredFileOutputStream;
    import org.apache.commons.lang3.SystemUtils;
    import org.apache.http.Header;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpHost;
    import org.apache.http.HttpResponse;
    import org.apache.http.auth.AuthScheme;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top