Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for someOrg (0.21 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultExcludeRuleConverterTest.groovy

                }
            }
        }
    
        @Issue("gradle/gradle#951")
        def "can create exclude rule for configuration name '#configurationName'"() {
            given:
            def group = 'someOrg'
            def module = 'someModule'
    
            when:
            Exclude exclude = new DefaultExcludeRuleConverter(moduleIdentifierFactory).convertExcludeRule(new DefaultExcludeRule(group, module))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * }
     *
     * dependencies {
     *   //configuring dependency to specific configuration of the module
     *   implementation configuration: 'someConf', group: 'org.someOrg', name: 'someModule', version: '1.0'
     *
     *   //configuring dependency on 'someLib' module
     *   implementation(group: 'org.myorg', name: 'someLib', version:'1.0') {
     *     //explicitly adding the dependency artifact:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. tests/test_callable_endpoint.py

    from fastapi.testclient import TestClient
    
    
    def main(some_arg, q: Optional[str] = None):
        return {"some_arg": some_arg, "q": q}
    
    
    endpoint = partial(main, "foo")
    
    app = FastAPI()
    
    app.get("/")(endpoint)
    
    
    client = TestClient(app)
    
    
    def test_partial():
        response = client.get("/?q=bar")
        data = response.json()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 28 18:13:30 UTC 2020
    - 457 bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("bash", "someArg1", "someArg1", "some arg 2", "-DFOO=\\\"bar < baz\\\"", "-DGOO='car < caz'")
    
            then:
            outputContains('Arg: someArg1')
            outputContains('Arg: some arg 2')
            outputContains('Arg: -DFOO="bar < baz"')
            outputContains('Arg: -DGOO=\'car < caz\'')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/internal/singleflight/singleflight_test.go

    	}
    	if err != nil {
    		t.Errorf("Do error = %v", err)
    	}
    }
    
    func TestDoErr(t *testing.T) {
    	var g Group
    	someErr := errors.New("some error")
    	v, err, _ := g.Do("key", func() (any, error) {
    		return nil, someErr
    	})
    	if err != someErr {
    		t.Errorf("Do error = %v; want someErr %v", err, someErr)
    	}
    	if v != nil {
    		t.Errorf("unexpected non-nil value %#v", v)
    	}
    }
    
    func TestDoDupSuppress(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:21:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/DefaultConventionTest.groovy

            convention.extensionsAsDynamicObject.prop
        }
    
        @Test void mixesInEachMethodOfConventionObject() {
            assertEquals(convention1.meth('somearg'), convention.extensionsAsDynamicObject.meth('somearg'))
        }
    
        @Test void conventionObjectsMethodsHavePrecedenceAccordingToOrderAdded() {
            assertEquals(convention1.meth(), convention.extensionsAsDynamicObject.meth())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/IntegrationTest.groovy

    /**
     * This annotation is a marker and guarantees all integration tests are tagged.
     *
     * When we use JUnit Platform `includeTags('SomeTag')`, all spock tests are excluded:
     * https://github.com/spockframework/spock/issues/1288 . As a workaround,
     * we tag all non-spock integration tests and use `includeTags(none() | SomeTag)` to make
     * sure spock engine tests are executed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                    import org.junit.jupiter.params.ParameterizedTest;
                    import org.junit.jupiter.params.provider.ValueSource;
    
                    public class NestedTestsWithTags {
    
                        @Tag("SomeTag")
                        public static class TagOnClass {
                            @ParameterizedTest
                            @ValueSource(strings = {"tag on class"})
                            public void run(String param) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    			rss:         []*apps.ReplicaSet{someRS, unrelatedRS},
    			rs:          someRS,
    			expectedRSs: []*apps.ReplicaSet{someRS},
    		},
    		{
    			name:        "expect to get back the given ReplicaSet as well as any related ReplicaSet but not an unrelated ReplicaSet",
    			rss:         []*apps.ReplicaSet{someRS, relatedRS, unrelatedRS},
    			rs:          someRS,
    			expectedRSs: []*apps.ReplicaSet{someRS, relatedRS},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    			sourceURL:    "http://mynode.com/whatever/apt/somelog.log",
    			transport:    testTransport2,
    			output:       `<a href="kubelet.log">kubelet.log</a><a href="https://foo.com/proxy/node/node1:8080/google.log">google.log</a>`,
    			contentType:  "text/html",
    			forwardedURI: "/proxy/node/node1:8080/whatever/apt/somelog.log",
    		},
    		"image": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top