Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 172 for conf1 (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                .configuration('default', extendsFrom: ['archives'])
                .configuration('source')
                .configuration('javadoc')
                .artifact(conf: 'archives')
                .artifact(classifier: 'source', conf: 'source')
                .artifact(classifier: 'javadoc', conf: 'javadoc')
                .publish()
    
            and:
            buildFile << """
    repositories { ivy { url "${ivyHttpRepo.uri}" } }
    configurations { compile }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

    """.denormalize()
            !lockDir.exists()
        }
    
        def 'reads a legacy lock file'() {
            given:
            def lockFile = lockDir.file('conf.lockfile')
            lockFile << """#Ignored
    line1
    
    line2"""
    
            when:
            def result = lockFileReaderWriter.readLockFile('conf')
    
            then:
            result == ['line1', 'line2']
    
            1 * listener.fileObserved(lockFile)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

     2215 ?        Sl   473:09 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -ea -Xmx384m -Dteamcity_logs=../logs/ -Dlog4j.configuration=file:../conf/teamcity-agent-log4j.xml -classpath /home/tcagent1/agent/lib/idea-settings.jar:/home/tcagent1/agent/lib/coverage-agent-com...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module";
        protected static final String SPNEGO_KRB5_CONF = "spnego.krb5.conf";
        protected static final String SPNEGO_LOGIN_CONF = "spnego.login.conf";
        protected static final String SPNEGO_LOGGER_LEVEL = "spnego.logger.level";
    
        protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null;
    
        @PostConstruct
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/net/lookup_windows.go

    	}
    	return addrs, nil
    }
    
    func (r *Resolver) lookupIP(ctx context.Context, network, name string) ([]IPAddr, error) {
    	if order, conf := systemConf().hostLookupOrder(r, name); order != hostLookupCgo {
    		return r.goLookupIP(ctx, network, name, order, conf)
    	}
    
    	// TODO(bradfitz,brainman): use ctx more. See TODO below.
    
    	var family int32 = syscall.AF_UNSPEC
    	switch ipVersion(network) {
    	case '4':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                hasPackaging("pom")
            }
        }
    
        void dependsOn(coord) {
            dependsOn << coord
        }
    
        void excludeFromConfig(String module, String conf) {
            excludeFromConfig << [module: module, conf: conf]
        }
    
        void constraint(coord) {
            constraints << coord
        }
    
        void withoutGradleMetadata() {
            metadataType = MetadataType.LEGACY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExternalModuleVariantsIntegrationTest.groovy

                .configuration('other')
                .artifact(ext: 'jar')
                .artifact(ext: 'aar', conf: 'other')
                .artifact(ext: 'thing', conf: 'other')
                .artifact(ext: 'aar', classifier: 'util', conf: 'other')
                .artifact(ext: 'jar', classifier: 'util', conf: 'other')
                .publish()
            ivyRepo.module("test", "test-api", "1.2")
                .configuration("custom")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                xmlWriter.startElement("configurations");
                for (IvyConfiguration configuration : model.configurations) {
                    xmlWriter.startElement("conf")
                        .attribute("name", configuration.getName())
                        .attribute("visibility", "public");
                    if (configuration.getExtends().size() > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

    class IvySpecificComponentMetadataRulesIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        def setup() {
            buildFile <<
                """
    dependencies {
        conf 'org.test:projectA:1.0'
    }
    
    task resolve(type: Sync) {
        from configurations.conf
        into 'libs'
    }
    """
            new ResolveTestFixture(buildFile).addDefaultVariantDerivationStrategy()
        }
    
        def "can access Ivy metadata"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

    # fluentd-gcp-configmap.yaml will be used for ingesting logs against new
    # resources like "k8s_container" and "k8s_node".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
        # This configuration file for Fluentd is used
        # to watch changes to Docker log files that live in the
        # directory /var/lib/docker/containers/ and are symbolically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
Back to top