Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,298 for somme (0.04 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecTest.groovy

            then:
            modulePath == [new File("/some/path"), new File("/some/path2")]
    
            where:
            description               | modulePathParameters
            "--module-path=<modules>" | ["--module-path=/some/path$File.pathSeparator/some/path2"]
            "--module-path <modules>" | ["--module-path", "/some/path$File.pathSeparator/some/path2"]
            "-p <modules>"            | ["-p", "/some/path$File.pathSeparator/some/path2"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: some-app
        plugin1: some-value
        plugin2: some-value
        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: some-app
        plugin1: some-value
        plugin2: some-value
        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            expect:
            matcher.find("sN", ["some-name", "some-number", "other"]) == null
            matcher.matches == ["some-name", "some-number"] as Set
        }
    
        def "does not select items when multiple mixed camel and kebab case matches"() {
            expect:
            matcher.find("sN", ["some-name", "someName", "other"]) == null
            matcher.matches == ["some-name", "someName"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top