Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,912 for because3 (0.25 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

                details.useVersion version.version
                details.because version.because
            }
        }
    }
    
    def findDefaultVersionInCatalog(String group, String name) {
        //some custom logic that resolves the default version into a specific version
        [version: "1.0", because: 'tested by QA']
    }
    // end::custom-versioning-scheme[]
    
    // tag::denying_version[]
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/build.gradle.kts

        testFixturesImplementation(libs.guava) {
            because("Groovy compiler reflects on private field on TextUtil")
        }
        testFixturesImplementation(libs.bouncycastlePgp)
        testFixturesApi(libs.testcontainersSpock) {
            because("API because of Groovy compiler bug leaking internals")
        }
        testFixturesImplementation(project(":jvm-services")) {
            because("Groovy compiler bug leaks internals")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. testing/precondition-tester/build.gradle.kts

        testImplementation(project(":internal-testing")) {
            because("Basic precondition framework and unit test preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":internal-integ-testing"))) {
            because("Integration testing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":signing"))) {
            because("Signing preconditions are coming from here")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_cgo_compiled_importmap.txt

    
    # "runtime/cgo [runtime.test]" appears in the test dependencies of "runtime",
    # because "runtime/cgo" itself depends on "runtime"
    
    go list -deps -test -compiled -f '{{if eq .ImportPath "net [runtime.test]"}}{{printf "%q" .Imports}}{{end}}' runtime
    
    	# Control case: the explicitly-imported package "sync" is a test variant,
    	# because "sync" depends on "runtime".
    stdout '"sync \[runtime\.test\]"'
    ! stdout '"sync"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 22:26:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix_beta.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: istio-system
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
        - testing-01.com # Expected: no validation error because this host exists
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/list9.txt

    -- input --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
    4. This one
      is a list
      because of the indented text.
    5. More wrapped
      items.
    6. And unwrapped.
    
    7. The blank line stops the heuristic.
    -- gofmt --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
     4. This one
        is a list
        because of the indented text.
     5. More wrapped
        items.
     6. And unwrapped.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 419 bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                import java.io.*;
    
                @DisableCachingByDefault(because = "test transform action")
                public abstract class MyTransformAction implements TransformAction {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            outputContains("Task ':myTask' is not up-to-date because:")
            outputContains("Task is untracked because: For testing")
    
            when:
            run("myTask", "--info")
            then:
            executedAndNotSkipped(":myTask")
            outputContains("Task ':myTask' is not up-to-date because:")
            outputContains("Task is untracked because: For testing")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

                .should(not(callMethod(File.class, "createTempFile", String.class, String.class)))
                .because(RATIONALE);
    
        @ArchTest
        public static final ArchRule forbid_calls_to_guava_Files_createTempDir =
            classes()
                .should(not(callMethod(com.google.common.io.Files.class, "createTempDir")))
                .because(RATIONALE);
    
        @ArchTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top