Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,766 for somme (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BuildOptionSetTest.groovy

            def args = parser.parse("--some-option", "abc", "--some-flag")
            def bean = converter.convert(args, new Bean())
    
            then:
            bean.flag
            bean.prop == "abc"
        }
    
        def "can convert properties"() {
            def converter = set.propertiesConverter()
    
            when:
            def bean = converter.convert(["some.option": "abc", "some.flag": "true"], new Bean())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

            given:
            idGenerator.generateId() >> 1
            timeProvider.currentTime >> 1200
    
            when:
            processor.testClassStarted("some-test")
    
            then:
            1 * target.started({it.id == 1 && it.className == 'some-test'}, {it.startTime == 1200})
            0 * target._
        }
    
        def "fires event on test class finish"() {
            given:
            idGenerator.generateId() >> 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            ProcessGroovyMethodsExecute.execute(listOf("some", "string"))
            ProcessGroovyMethodsExecute.execute(listOf("some", "string"), arrayOf("string"), file("test"))
            ProcessGroovyMethodsExecute.execute(listOf("some", "string"), listOf("array"), file("test"))
    
            val e = RuntimeExec()
            e.exec("some string")
            e.exec("some string", arrayOf("string"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

            annotation.value() as Set == ["some-type", Transformer.name, Runnable.name] as Set
            annotation.classes() == [] as Class[]
        }
    
        static class Transformer {
        }
    }
    
    @GroovyASTTransformationClass("some-type")
    @interface WithNameSpecified {
    }
    
    @GroovyASTTransformationClass(["some-type", "some-other-type"])
    @interface WithNamesSpecified {
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top