Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for Name2 (0.05 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            ModuleComponentSelector selector2 = DefaultModuleComponentSelector.newSelector(
                DefaultModuleIdentifier.newId('group2', 'name2'), constraint('1.0'), AttributeTestUtil.attributes("foo": "val2"), [])
            ModuleComponentSelector selector3 = DefaultModuleComponentSelector.newSelector(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/go/types/instantiate_test.go

    	"testing"
    )
    
    func TestInstantiateEquality(t *testing.T) {
    	emptySignature := NewSignatureType(nil, nil, nil, nil, nil, false)
    	tests := []struct {
    		src       string
    		name1     string
    		targs1    []Type
    		name2     string
    		targs2    []Type
    		wantEqual bool
    	}{
    		{
    			"package basictype; type T[P any] int",
    			"T", []Type{Typ[Int]},
    			"T", []Type{Typ[Int]},
    			true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/net/http/httputil/dump_test.go

    	{
    		GetReq: func() *http.Request {
    			return mustReadRequest("POST /v2/api/?login HTTP/1.1\r\n" +
    				"Host: passport.myhost.com\r\n" +
    				"Content-Length: 3\r\n" +
    				"\r\nkey1=name1&key2=name2")
    		},
    		WantDump: "POST /v2/api/?login HTTP/1.1\r\n" +
    			"Host: passport.myhost.com\r\n" +
    			"Content-Length: 3\r\n" +
    			"\r\nkey",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. security/tools/jwt/sa-jwt.py

                            help="sub claim. If not provided, it is set to the same as iss claim.")
        parser.add_argument("-claims", "--claims",
                            help="Other claims in format name1:value1,name2:value2 etc. Only string values are supported.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/AbstractDependencyDescriptorFactoryInternalSpec.groovy

        static final ARTIFACT = new DefaultDependencyArtifact("name", "type", "classifier", "ext", null)
        static final ARTIFACT_WITH_CLASSIFIERS = new DefaultDependencyArtifact("name2", "type2", "ext2", "classifier2", "http://www.url2.com")
    
        def excludeRuleConverterStub = Mock(ExcludeRuleConverter)
    
        def setup() {
            expectExcludeRuleConversion(TEST_EXCLUDE_RULE, TEST_IVY_EXCLUDE_RULE)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 19:31:08 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            publication.artifactId = "name2"
            publication.version = "version2"
    
            then:
            publication.pom.coordinates.groupId.get() == "group2"
            publication.pom.coordinates.artifactId.get() == "name2"
            publication.pom.coordinates.version.get() == "version2"
    
            and:
            publication.groupId == "group2"
            publication.artifactId == "name2"
            publication.version == "version2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. pkg/kubelet/secret/secret_manager_test.go

    			{envFromNames: []string{"s40"}},
    		},
    	}
    	manager.RegisterPod(podWithSecrets("ns1", "name1", s2))
    	// Create another pod, but with same secrets in different namespace.
    	manager.RegisterPod(podWithSecrets("ns2", "name2", s2))
    	// Create and delete a pod with some other secrets.
    	s3 := secretsToAttach{
    		imagePullSecretNames: []string{"s5"},
    		containerEnvSecrets: []envSecrets{
    			{envVarNames: []string{"s6"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            def dependency1 = new DefaultExternalModuleDependency("group", "name", "version")
            def dependency2 = new DefaultExternalModuleDependency("group", "name2", "version")
    
            when:
            def detached = configurationContainer.detachedConfiguration(dependency1, dependency2)
    
            then:
            detached.name == "detachedConfiguration1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. security/tools/jwt/samples/gen-jwt.py

                            help="sub claim. If not provided, it is set to the same as iss claim.")
        parser.add_argument("-claims", "--claims",
                            help="Other claims in format name1:value1,name2:value2 etc. Only string values are supported.")
        parser.add_argument("-jwks", "--jwks",
                            help="Path to the output file for JWKS.")
        parser.add_argument("-expire", "--expire", type=int, default=3600,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/kube/krt/join_test.go

    	pc.Delete(pod.Name, pod.Namespace)
    	assert.EventuallyEqual(t, fetch, nil)
    
    	pod2 := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name2",
    			Namespace: "namespace",
    			Labels:    map[string]string{"app": "foo"},
    		},
    		Status: corev1.PodStatus{PodIP: "2.3.4.5"},
    	}
    	pc.CreateOrUpdateStatus(pod)
    	pc.CreateOrUpdateStatus(pod2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top