Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,184 for conf1 (0.04 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInjectionIntegrationTest.groovy

                println 'Resource action executed'
            }
        }
    }
    
    dependencies {
        components {
            all(AssertingRule)
        }
        conf 'org:my-lib:1.0'
    }
    
    task resolve {
        def files = configurations.conf
        doLast {
            files.forEach { }
        }
    }
    """
            when:
            succeeds 'resolve'
    
            then:
            outputContains('AssertingRule executed')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pkg/filewatcher/filewatcher_test.go

    // newSymlinkedWatchFile simulates the behavior of k8s configmap/secret.
    // Path structure looks like:
    //
    //	<watchDir>/test.conf
    //	             ^
    //	             |
    //
    // <watchDir>/data/test.conf
    //
    //	^
    //	|
    //
    // <watchDir>/data1/test.conf
    func newSymlinkedWatchFile(t *testing.T) (string, string) {
    	g := NewGomegaWithT(t)
    
    	watchDir := t.TempDir()
    
    	dataDir1 := path.Join(watchDir, "data1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/export_test.go

    	"arm64": obj.Linknew(&arm64.Linkarm64),
    }
    
    func testConfig(tb testing.TB) *Conf      { return testConfigArch(tb, "amd64") }
    func testConfigS390X(tb testing.TB) *Conf { return testConfigArch(tb, "s390x") }
    func testConfigARM64(tb testing.TB) *Conf { return testConfigArch(tb, "arm64") }
    
    func testConfigArch(tb testing.TB, arch string) *Conf {
    	ctxt, ok := testCtxts[arch]
    	if !ok {
    		tb.Fatalf("unknown arch %s", arch)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

                repositories { maven { url "${mavenRepo.uri}" } }
    
                configurations {
                    conf
                }
    
                task resolve {
                    dependsOn configurations.conf
                    doLast {
                        def expectedResult = result.split(",")
                        assert configurations.conf.files.collect { it.name } == expectedResult
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyMetadataRule/kotlin/repo/org.sample/api/2.0/ivy-2.0.xml

        <info organisation="org.sample" module="api" revision="2.0"/>
        <configurations>
            <conf name="compile" visibility="public"/>
            <conf name="default" visibility="public" extends="compile,runtime"/>
            <conf name="runtime" visibility="public"/>
        </configurations>
        <publications>
            <artifact name='api' type='jar' ext='jar' conf='compile' />
        </publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

                    }
                }
    
                def dependencies = objects.newInstance(MyDependencies)
    
                def conf = configurations.dependencyScope("conf").get()
                conf.fromDependencyCollector(dependencies.implementation)
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                    ${configuredRepository(repoType)}
                """
            }
    
            def conf = "conf"
            resolve = new ResolveTestFixture(buildFile, conf)
            settingsFile << "rootProject.name = 'test'"
            resolve.prepare()
            buildFile << """
                configurations {
                    $conf
                }
            """
            resolve.addDefaultVariantDerivationStrategy()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top