Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,268 for because1 (0.14 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. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

        /**
         * This component was selected because it's the root component.
         */
        ROOT("root"),
    
        /**
         * This component was selected because it was requested directly.
         */
        REQUESTED("requested"),
    
        /**
         * This component was selected by a rule.
         */
        SELECTED_BY_RULE("selected by rule"),
    
        /**
         * This component was selected because selection was forced on this version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. test/recover1.go

    	defer mustNotRecover()
    	defer func() {
    		defer recover()	// like a normal call from this func; runs because mustRecover stops the panic
    		defer mustRecover(3)
    		panic(3)
    	}()
    	panic(2)
    }
    
    func test7() {
    	// Like test6, but swapped defer order.
    	// The recover in "defer recover()" is now a no-op,
    	// because it runs called from panic, not from the func,
    	// and therefore cannot see the panic of 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
Back to top