Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 366 for wren (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            buildFile << """
                dependencies {
                    implementation "org:foo:1.0"
                }
            """
    
            when:
            succeeds ":compileJava"
    
            then:
            noExceptionThrown()
    
            when:
            def group = new File(CacheLayout.FILE_STORE.getPath(metadataCacheDir), "org")
            def module = new File(group, "foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                        ivy(IvyPublication) {
                            from components.java
                        }
                    }
                }
    
                $dependencies
    """)
    
            when:
            run "publish"
    
            then:
            javaLibrary.assertPublishedAsJavaModule()
    
            with(javaLibrary.parsedIvy) {
                configurations.keySet() == ["default", "compile", "runtime"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

        <version>version-one</version>
        <packaging>eclipse-plugin</packaging>
    </project>
    """
    
            when:
            parsePom()
    
            then:
            metadata.id == componentId('group-one', 'artifact-one', 'version-one')
            metadata.dependencies.empty
        }
    
        def "fails when POM is not well formed XML"() {
            given:
            pomFile << """
    <project>
        <modelVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

    import spock.lang.Issue
    
    class PomReaderProfileTest extends AbstractPomReaderTest {
        final ImmutableModuleIdentifierFactory moduleIdentifierFactory = Mock()
    
        def "parse POM without active profile"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
        <name>Test Artifact One</name>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

                    <some.artifact>artifact-one</some.artifact>
                    <some.version>version-one</some.version>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            when:
            parsePom()
    
            then:
            metadata.id == componentId('group-one', 'artifact-one', 'version-one')
            metadata.dependencies.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            }
    
        val ConeKotlinType.candidateClassId: ClassId?
            get() {
                return when (this) {
                    is ConeErrorType -> when (val diagnostic = this.diagnostic) {
                        // Tolerate code that misses type parameters while shortening it.
                        is ConeUnmatchedTypeArgumentsError -> diagnostic.symbol.classId
                        else -> null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                dependencies {
                    conf 'org:xml:1.0'
                    conf 'org:json:1.1'
                }
            """
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('1.0') alignsTo('1.1') byVirtualPlatform()
                module('xml') tries('1.0') alignsTo('1.1') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          }
    
        /**
         * Sets the default connect timeout for new connections. A value of 0 means no timeout,
         * otherwise values must be between 1 and [Integer.MAX_VALUE] when converted to milliseconds.
         *
         * The connect timeout is applied when connecting a TCP socket to the target host. The default
         * value is 10 seconds.
         */
        fun connectTimeout(
          timeout: Long,
          unit: TimeUnit,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                }
    
                configurations.conf.incoming.afterResolve {
                    // afterResolve will trigger the problem when reading
                    it.resolutionResult.allComponents {
                        println "Success for \${it.id}"
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:test' {
                    expectVersionListing()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "message set when claim is set",
    			in: []api.ClaimValidationRule{
    				{Claim: "claim", Message: "message"},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimValidationRules[0].message: Invalid value: "message": message can't be set when claim is set`,
    		},
    		{
    			name: "requiredValue set when expression is set",
    			in: []api.ClaimValidationRule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top