Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 244 for foo_baz (0.33 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

        }
    
        def "can use arbitrary separators when building bundles"() {
            builder.library("foo.bar", "foo:bar:1.0")
            builder.library("foo-baz", "foo:baz:1.0")
            builder.library("foo_qux", "foo:qux:1.0")
    
            builder.bundle("my", ["foo-bar", "foo_baz", "foo.qux"])
            builder.bundle("a.b", ["foo.bar"])
            builder.bundle("a_c", ["foo.bar"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. pkg/util/strcase/camelcase_test.go

    )
    
    func TestCamelCase(t *testing.T) {
    	cases := map[string]string{
    		"":              "",
    		"foo":           "Foo",
    		"foobar":        "Foobar",
    		"fooBar":        "FooBar",
    		"foo_bar":       "FooBar",
    		"foo-bar":       "FooBar",
    		"foo_Bar":       "FooBar",
    		"foo9bar":       "Foo9Bar",
    		"HTTP-API-Spec": "HTTPAPISpec",
    		"http-api-spec": "HttpApiSpec",
    		"_foo":          "XFoo",
    		"-foo":          "XFoo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            def barInsight = json.project.configurations[0].moduleInsights.find({ it.module == 'foo:bar' }).insight
            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'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

            constraints {
                api 'org:foo:1.0'
            }
    """)
            def foobaz = mavenHttpRepo.module('org', 'foobaz', '1.0').publish()
            def foobar = mavenHttpRepo.module('org', 'foobar', '1.0').publish()
            def foo = mavenHttpRepo.module('org', 'foo', '1.0').dependsOn(foobar).dependsOn(foobaz).publish()
            def platformGMM = mavenHttpRepo.module("org", "other-platform", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

        }
    
        def "suggests model paths with Levenshtein distance lower than 4"() {
            when:
            availablePaths = ["task.afoobar", "tasks.boofar", "tasks.foobar", "tasks.f", "fooba"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "task.afoobar", "tasks.boofar"]
        }
    
        def "suggests model paths with Levenshtein distance lower than half it's length for strings shorter than 6 characters"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

        subject:
          - fooar Object [*]
              suggestions: foobar
    
      foobah { ... } @ build.gradle line 18, column 17
        subject:
          - foobah Object [*]
              suggestions: foobar
    
      foonar { ... } @ build.gradle line 16, column 17
        subject:
          - foonar 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)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            groupSet("foo", "foz")             | module("bar")         | moduleIdSet("foo:bar", "foz:bar")
            groupSet("foo", "foz")             | moduleSet("bar", "baz")         | moduleIdSet("foo:bar", "foz:bar", "foo:baz", "foz:baz")
            allOf(group("foo"), group("foo2")) | module("bar")         | nothing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    							{
    								Patch: &networking.EnvoyFilter_Patch{},
    								Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    									Proxy: &networking.EnvoyFilter_ProxyMatch{ProxyVersion: `foobaz`},
    								},
    							},
    						},
    					},
    				},
    			},
    			updates: []config.Config{},
    			deletes: []ConfigKey{},
    		},
    		{
    			name:    "update one",
    			creates: []config.Config{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top