Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for foo3Jar (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'b-foo'
                    }
                    task foo2Jar(type: Jar) {
                       archiveBaseName = 'b-foo2'
                    }
                    tasks.withType(Jar) { destinationDirectory = buildDir }
                    artifacts {
                        foo fooJar
                        foo2 foo2Jar
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

                    }
                }
            '''
    
            when:
            fails "tasks"
    
            then:
            failureCauseContains('''
      fooar { ... } @ build.gradle line 20, column 17
        subject:
          - fooar Object [*]
              suggestions: foobar
    
      foobah { ... } @ build.gradle line 18, column 17
        subject:
          - foobah Object [*]
              suggestions: foobar
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                    convention: implementation("foo:bar:1.0"),
                    buildConfiguration: "",
                    expectedConfigurations: [
                        "implementation = ${externalDependency('foo', 'bar', '1.0')}"
                    ]
                ],
                [
                    testCase: "implementation has convention and api is set",
                    convention: implementation("foo:bar:1.0"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            failureCauseContains '''
      tasks.foonar { ... } @ build.gradle line 15, column 17
        subject:
          - tasks.foonar Object [*]
              suggestions: tasks.foobar
    '''
        }
    
        def "fails on ambiguous by-type reference"() {
            given:
            buildScript """
                class Plugin1 {
                    static class Rules extends RuleSource {
                        @Model
                        String s1() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    compileClasspath - Compile classpath for source set 'main'.
    +--- project :a
    |    \\--- foo:bar:1.0 -> 3.0
    |         \\--- foo:baz:5.0
    +--- project :b
    |    \\--- foo:bar:0.5.dont.exist -> 3.0 (*)
    +--- project :c
    |    \\--- foo:bar:3.0 (*)
    +--- project :d
    |    \\--- foo:bar:2.0 -> 3.0 (*)
    \\--- project :e
         \\--- foo:bar:3.0 (*)
    """
        }
    
        def "renders the dependency tree"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            fromObjectList()   | "command.execute(new String[] {'FOOBAR=foobar'}, file('$pwd'))"                       | pwd               | "foobar"
            fromString()       | "command.execute(['FOOBAR=foobar'], file('$pwd'))"                                    | pwd               | "foobar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight.size() == 3
            barInsight[0].name == 'foo:bar:2.0'
            barInsight[0].resolvable == 'RESOLVED'
            barInsight[0].hasConflict == false
            barInsight[0].description == null
            barInsight[0].children.size() == 0
    
            barInsight[1].name == 'foo:bar:2.0'
            barInsight[1].resolvable == 'RESOLVED'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/config_test.go

        matchImages:
        - "registry.io/foobar"
        defaultCacheDuration: 10m
        apiVersion: credentialprovider.kubelet.k8s.io/v1alpha1
        args:
        - --v=5
        env:
        - name: FOO
          value: BAR`,
    			config:    nil,
    			expectErr: true,
    		},
    		{
    			name: "config with wrong apiversion",
    			configData: `---
    kind: CredentialProviderConfig
    apiVersion: foobar/v1alpha1
    providers:
      - name: test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        testStreamingEncodingWithSeparators(enc, "foobar", "Zm9vYmFy");
      }
    
      public void testBase64Offset() {
        testEncodesWithOffset(base64(), "foobar", 0, 6, "Zm9vYmFy");
        testEncodesWithOffset(base64(), "foobar", 1, 5, "b29iYXI=");
        testEncodesWithOffset(base64(), "foobar", 2, 3, "b2Jh");
        testEncodesWithOffset(base64(), "foobar", 3, 1, "Yg==");
        testEncodesWithOffset(base64(), "foobar", 4, 0, "");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FILES_AND_FOLDERS'
          type = 'EXCLUDE_ALL'
          matcher {
            id = 'org.eclipse.some.custom.matcher'
            arguments = 'foobar'
          }
        }
      }
    }
            """
            when:
            run("eclipse")
            then:
    
            def resourceFilterXml = '''
            <filteredResources>
                    <filter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top