Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 227 for conf3 (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

            'multiple dependency declarations (artifact notation)' | 'bar'        | "conf('org:foo') { artifact { name = 'bar'; type = 'distribution-tgz' } }; conf('org:foo') { artifact { name = 'bar'; type = 'zip' } }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                    dependsOn 'org:first:2.0'
                }
            }
    
            buildFile << """
                dependencies {
                    conf(platform('org:platform:1.0'))
                    conf 'org:first:1.0'
                    conf 'org:second:1.0'
                }
    """
            when:
            repositoryInteractions {
                'org:client:4.1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                }
                configurations.add(configurations.conf.copy())
    
                task('assertDeps') {
                    def conf = configurations.conf
                    def confCopy = configurations.confCopy
                    def notCopy = configurations.notCopy
                    doLast {
                        assert conf*.name == ['api-1.1.jar']
                        assert confCopy*.name == ['api-1.1.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                    '1.1'()
                    '1.2'()
                    '2.0'()
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:bar:1'
                    conf 'org:baz:1'
                    conf 'org:foo:[1.0,2.0)'
                }
            """
    
            when:
            repositoryInteractions {
                'org:bar:1' {
                    expectResolve()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                }
    
                dependencies {
                   conf "cglib:cglib-nodep:3.2.4"
                   conf "cglib:cglib:3.2.5"
    
                   components {
                      withModule('cglib:cglib-nodep', CapabilityRule)
                      withModule('cglib:cglib', CapabilityRule)
                   }
                }
    
                configurations.conf.resolutionStrategy.capabilitiesResolution {
                    $rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            given:
            tmpDir.file(LockFileReaderWriter.UNIQUE_LOCKFILE_NAME) << "empty=conf"
            startParameter.isWriteDependencyLocks() >> true
            provider = newProvider()
            def modules = [module('org', 'foo', '1.0'), module('org','bar','1.3')] as Set
            provider.loadLockState('conf', owner)
            provider.persistResolvedDependencies('conf', owner, modules, emptySet())
    
            when:
            provider.buildFinished()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, 'c1')
                        }
                        capabilities {
                            requireCapability('org.test:cap1')
                        }
                    }
                    conf('org:test:1.0') {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    // The name variable only exists for testing. It is otherwise always
    // "/etc/resolv.conf".
    func (conf *resolverConfig) tryUpdate(name string) {
    	conf.initOnce.Do(conf.init)
    
    	if conf.dnsConfig.Load().noReload {
    		return
    	}
    
    	// Ensure only one update at a time checks resolv.conf.
    	if !conf.tryAcquireSema() {
    		return
    	}
    	defer conf.releaseSema()
    
    	now := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    		},
    		{
    			name:             "standalone CNI plugin unspecified CNI config file",
    			expectedConfName: "YYY-istio-cni.conf",
    			goldenConfName:   "istio-cni.conf",
    		},
    		{
    			name:              "standalone CNI plugin specified CNI config file",
    			specifiedConfName: "specific-name.conf",
    			expectedConfName:  "specific-name.conf",
    			goldenConfName:    "istio-cni.conf",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

                    configurations { conf }
                    dependencies {
                        ${platformDependency(platformType, 'org:platform:1.+')}
                        conf('org:bar')
                    }
                }
                dependencies {
                    conf(project(path: ':recklessLibrary', configuration: 'conf'))
                    conf(project(path: ':secondLibrary', configuration: 'conf'))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top