Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for Dep1 (0.04 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

        version = "1.0"
    
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
        dependencies {
            api("org.gradle:pom-excludes:0.1"){
               exclude group: "org.opensource1", module: "dep1"
               exclude group: "org.opensource2"
               exclude module: "dep2"
            }
        }
        publishing {
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                    path "kotlin:$it -> annotations:$it"
                }
            }
    
            given:
            buildFile << """
                dependencies {
                    conf("$dep1") {
                        version { strictly '$v1' }
                    }
                    conf("org:kotlin:2.9.4.1")
    
                    conf("$dep2") {
                        version { strictly '$v2' }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            httpServer.start()
            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
            def dep2 = withColorVariants(remoteRepo.module("group", "thing2", "1.2")).publish().allowAll()
            withColorVariants(remoteRepo.module("group", "thing3", "1.2")).dependsOn(dep1).dependsOn(dep2).publish().allowAll()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            when:
            parsePom()
    
            then:
            metadata.dependencies.size() == 3
    
            def dep1 = metadata.dependencies[0]
            dep1.selector == moduleId('group-two', 'artifact-one', '11')
            dep1.scope == MavenScope.Compile
    
            def dep2 = metadata.dependencies[1]
            dep2.selector == moduleId('group-two', 'artifact-three', '11')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  6. src/cmd/covdata/tool_test.go

    	lines = runToolOp(t, s, "debugdump", dargs)
    	if len(lines) == 0 {
    		t.Fatalf("dump run produced no output")
    	}
    	want := map[string]int{
    		"Package path: " + mainPkgPath + "/dep": 0,
    		"Func: Dep1":                            0,
    		"Func: PDep":                            0,
    	}
    	bad := false
    	for _, line := range lines {
    		if v, ok := want[line]; ok {
    			if v != 0 {
    				t.Errorf("duplicate line %s", line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. tests/test_include_router_defaults_overrides.py

    
    class ResponseLevel5(JSONResponse):
        media_type = "application/x-level-5"
    
    
    async def dep0(response: Response):
        response.headers["x-level0"] = "True"
    
    
    async def dep1(response: Response):
        response.headers["x-level1"] = "True"
    
    
    async def dep2(response: Response):
        response.headers["x-level2"] = "True"
    
    
    async def dep3(response: Response):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 358.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xds_cache_test.go

    			svc, dr)
    		return b
    	}
    	ep1 := makeEp("1", nil)
    	ep2 := makeEp("2", nil)
    
    	t.Run("simple", func(t *testing.T) {
    		c := model.NewXdsCache()
    		c.Add(ep1, &model.PushRequest{Start: time.Now()}, any1)
    		if !reflect.DeepEqual(c.Keys(model.EDSType), []any{ep1.Key()}) {
    			t.Fatalf("unexpected keys: %v, want %v", c.Keys(model.EDSType), ep1.Key())
    		}
    		if got := c.Get(ep1); got != any1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker_test.go

    			makeNSN("ns1", "ep1"): 1,
    		},
    		expectedChangedEndpoints: sets.New(makeNSN("ns1", "ep1")),
    	}, {
    		name: "remove a slice from an endpoint",
    		previousEndpointSlices: []*discovery.EndpointSlice{
    			makeTestEndpointSlice("ns1", "ep1", 1, multipleSubsets_s1),
    			makeTestEndpointSlice("ns1", "ep1", 2, multipleSubsets_s2),
    		},
    		currentEndpointSlices: []*discovery.EndpointSlice{
    			makeTestEndpointSlice("ns1", "ep1", 1, namedPort),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	cache := newEndpointSliceCache()
    	hostname := host.Name("foo")
    
    	// add a endpoint
    	ep1 := &model.IstioEndpoint{
    		Address:         "1.2.3.4",
    		ServicePortName: "http",
    	}
    	cache.Update(hostname, "slice1", []*model.IstioEndpoint{ep1})
    	if !testEndpointsEqual(cache.Get(hostname), []*model.IstioEndpoint{ep1}) {
    		t.Fatalf("unexpected endpoints")
    	}
    	if !cache.Has(hostname) {
    		t.Fatalf("expect to find the host name")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top