Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for _somename (0.26 sec)

  1. src/crypto/x509/name_constraints_test.go

    	{"customer/department=******@****.***", "customer/department=shipping", "example.com"},
    	{"$******@****.***", "$A12345", "example.com"},
    	{"!def!******@****.***", "!def!xyz%abc", "example.com"},
    	{"_somename@example.com", "_somename", "example.com"},
    }
    
    func TestRFC2821Parsing(t *testing.T) {
    	for i, test := range rfc2821Tests {
    		mailbox, ok := parseRFC2821Mailbox(test.in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    		`<"Abc\\@def"@example.com>`,
    		`<"Joe\\Blow"@example.com>`,
    		`<test1/test2=******@****.***>`,
    		`<def!******@****.***>`,
    		`<_somename@example.com>`,
    		`<joe@uk>`,
    		`<~@example.com>`,
    		`<"..."@test.com>`,
    		`<"john..doe"@example.com>`,
    		`<"john.doe."@example.com>`,
    		`<".john.doe"@example.com>`,
    		`<"."@example.com>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            String someName = "someName"
            String someVersion = "someVersion"
            String someConfiguration = "someConfiguration"
            DefaultResolvedDependency resolvedDependency = new DefaultResolvedDependency(someConfiguration, newId(someGroup, someName, someVersion), buildOperationProcessor)
    
            then:
            resolvedDependency.name == someGroup + ":" + someName + ":" + someVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/marshal_test.go

    	if err != nil {
    		t.Fatalf("unexpected error marshalling: %v", err)
    	}
    
    	pod2, ok := obj2.(*corev1.Pod)
    	if !ok {
    		t.Fatal("did not get a Pod")
    	}
    
    	if pod2.Name != "someName" {
    		t.Errorf("expected someName, got %q", pod2.Name)
    	}
    
    	if pod2.Namespace != "testNamespace" {
    		t.Errorf("expected testNamespace, got %q", pod2.Namespace)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            properties['someTask'] == testTask
        }
    
        def extraPropertiesAreInheritable() {
            when:
            project.ext.somename = 'somevalue'
            then:
            project.inheritedScope.hasProperty('somename')
            project.inheritedScope.getProperty('somename') == 'somevalue'
        }
    
        def conventionPropertiesAreInheritable() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init_test.go

    apiVersion: %s
    kind: InitConfiguration
    localAPIEndpoint:
      advertiseAddress: "1.2.3.4"
    bootstrapTokens:
    - token: "abcdef.0123456789abcdef"
    nodeRegistration:
      criSocket: %s
      name: someName
      ignorePreflightErrors:
        - c
        - d
    ---
    apiVersion: %[1]s
    kind: ClusterConfiguration
    controlPlaneEndpoint: "3.4.5.6"
    `, kubeadmapiv1.SchemeGroupVersion.String(), expectedCRISocket)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/join_test.go

        apiServerEndpoint: 1.2.3.4:6443
        unsafeSkipCAVerification: true
    controlPlane:
      certificateKey: c39a18bae4a72e71b178661f437363da218a3efb83ddb03f1cd91d9ae1da41bd
    nodeRegistration:
      criSocket: %s
      name: someName
      ignorePreflightErrors:
        - c
        - d
    `, kubeadmapiv1.SchemeGroupVersion.String(), expectedCRISocket)
    
    func TestNewJoinData(t *testing.T) {
    	// create temp directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/config/validation/envoyfilter/envoyfilter_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// Config name for testing
    	someName = "foo"
    	// Config namespace for testing.
    	someNamespace = "bar"
    )
    
    func stringOrEmpty(v error) string {
    	if v == nil {
    		return ""
    	}
    	return v.Error()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			valid:   true,
    			warning: true,
    		},
    		{
    			name:       "empty spec with non default name",
    			configName: someName,
    			in:         &security_beta.RequestAuthentication{},
    			valid:      true,
    		},
    		{
    			name:        "dry run annotation not supported",
    			configName:  someName,
    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in:          &security_beta.RequestAuthentication{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top