Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for someLib (0.14 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            runEclipseTask """
    apply plugin: "java"
    apply plugin: "eclipse"
    
    repositories {
    	flatDir { dirs "${TextUtil.escapeString(repoDir)}" }
    }
    
    dependencies {
    	implementation "some:lib:1.0"
    }
            """
        }
    
        @Test
        @Issue("GRADLE-1706") // doesn't prove that the issue is fixed because the test also passes with 1.0-milestone-4
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/IncompatibilityCrossVersionSpec.groovy

                    public MyTask() {
                        getInputs().file("somefile");
                        getInputs().files("afile", "anotherfile");
                        getInputs().dir("someDir");
                        getInputs();
                        getOutputs();
                    }
                }
            """
            builder.buildJar(pluginJar)
    
            buildFile << """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            1 * taskSelector.getSelection(_, other.rootProject, "task", false)
        }
    
        def "can use pattern matching to select project"() {
            withIncludedBuilds()
            def p1 = addProject(root, "someLibs")
            def p2 = addProject(root, "otherLibs")
    
            when:
            selector.resolveTaskName(null, null, target, ":sL:task")
    
            then:
            1 * taskSelector.getSelection(_, p1, "task", false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	msg     string
    }{
    	{"/", "Default"},
    	{"/someDir/", "someDir"},
    	{"/#/", "hash"},
    	{"someHost.com/someDir/", "someHost.com/someDir"},
    }
    
    var vtests = []struct {
    	url      string
    	expected string
    }{
    	{"http://localhost/someDir/apage", "someDir"},
    	{"http://localhost/%23/apage", "hash"},
    	{"http://localhost/otherDir/apage", "Default"},
    	{"http://someHost.com/someDir/apage", "someHost.com/someDir"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    		},
    		Resolution: resolution,
    	}
    	s.MemRegistry.AddService(svc)
    
    	s.MemRegistry.AddInstance(&model.ServiceInstance{
    		Service: svc,
    		Endpoint: &model.IstioEndpoint{
    			Address:         "somevip.com",
    			EndpointPort:    8080,
    			ServicePortName: "http",
    		},
    		ServicePort: &model.Port{
    			Name:     "http",
    			Port:     8080,
    			Protocol: protocol.HTTP,
    		},
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "not bound to a pod",
    		},
    		{
    			name:       "forbid create of token bound to nonexistant pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(makeTokenRequest("nopod", "someuid"), nil, tokenrequestKind, "ns", "mysa", svcacctResource, "token", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    				},
    			},
    		},
    	}
    
    	node := func(cg *core.ConfigGenTest) *model.Proxy {
    		return cg.SetupProxy(&model.Proxy{
    			Type:        model.SidecarProxy,
    			IPAddresses: []string{"1.1.1.1"},
    			ID:          "someID",
    			DNSDomain:   "foo.com",
    			IstioVersion: &model.IstioVersion{
    				Major: 1,
    				Minor: 20,
    			},
    		})
    	}
    
    	nodeWithExtended := func(cg *core.ConfigGenTest) *model.Proxy {
    		out := node(cg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top