Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,915 for somme (0.1 sec)

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

            failure.assertHasCause("""Could not find some-artifact-1.0-my-sources.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${sourceArtifact.uri}""")
            failure.assertHasCause("""Could not find some-artifact-1.0-my-javadoc.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${javadocArtifact.uri}""")
        }
    
        def "resolves when some artifacts are missing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            when:
            formatter.node("Some thing.")
    
            then:
            formatter.toString() == "Some thing."
        }
    
        def "formats root with no children"() {
            when:
            formatter.node("Some thing.")
            formatter.startChildren()
            formatter.endChildren()
    
            then:
            formatter.toString() == "Some thing."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInJavaIntegrationTest.groovy

            "System.getProperties().get(\"some.property\")"            | _
            "System.getProperty(\"some.property\")"                    | _
            "System.getProperty(\"some.property\", \"default.value\")" | _
            "System.setProperty(\"some.property\", \"new.value\")"     | _
            "System.clearProperty(\"some.property\")"                  | _
        }
    
        def "setProperties is instrumented in Java"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractStyledTextOutputTest.groovy

            output.style(Style.Info).withStyle(Style.Error).text('some text')
    
            then:
            output.value == '{info}{error}some text{info}'
        }
    
        def writesTextAndEndOfLineWithTemporaryStyleChange() {
            when:
            output.style(Style.Info).withStyle(Style.Error).println('some text')
    
            then:
            output.value == '{info}{error}some text{info}\n'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            outputContains("some.property = $propertyValue")
    
            where:
            propertyValue | propertySetter
            "some.value"  | """System.setProperty("some.property", "$propertyValue")"""
            "some.value"  | """System.properties["some.property"]="$propertyValue" """
            "1"           | """System.properties["some.property"]=$propertyValue"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. docs/fr/docs/benchmarks.md

    * **FastAPI** :
        * Comme Starlette, FastAPI utilise Uvicorn et ne peut donc pas ĂȘtre plus rapide que ce dernier.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. operator/pkg/object/testdata/well-formed-with-comments.yaml

    # some random comments
     # some random comments
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default # some random comments should be deleted
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
        Second line of data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 304 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenJvmLibraryArtifactResolutionIntegrationTest.groovy

        }
    }
    """
    
            def snapshotModule = repo.module("some.group", "some-artifact", "1.0-SNAPSHOT")
            def snapshotSources = snapshotModule.artifact(classifier: "sources")
            snapshotModule.publish()
    
            fixture.withComponentVersion("some.group", "some-artifact", "1.0-SNAPSHOT")
                    .withSnapshotTimestamp(snapshotModule.uniqueSnapshotVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(name) // task property is ok
                        println($expression)
                    }
                }
            """
    
            when:
            configurationCacheFails ":some"
    
            then:
            failure.assertHasFileName("Build file '$buildFile'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

            when:
            def result = serialize(descriptor)
    
            then:
            result instanceof DefaultTestClassDescriptor
            result.id == id
            result.name == "some-test"
        }
    
        def "serializes DefaultTestDescriptor"() {
            def id = new CompositeIdGenerator.CompositeId(1L, 2L)
            def descriptor = new DefaultTestDescriptor(id, "some-class", "some-test")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top