Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for _somename (0.35 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. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("somena", "someName")
            matches("somena", "SomeName")
            matches("somena", "SomeName")
            matches("some na", "Some Name")
        }
    
        def "selects item with matching camel case prefix"() {
            expect:
            matches("sN", "someName")
            matches("soN", "someName")
            matches("SN", "someName")
            matches("SN", "SomeName")
            matches("SN", "SomeNameWithExtraStuff")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocLinkConverterTest.groovy

            where:
            input << [
                    '#someName(SomeClass,Object)',
                    '#someName(SomeClass, Object)',
                    '#someName(SomeClass,\tObject)',
                    '#someName  (  \t SomeClass ,\tObject\t ) '
            ]
        }
    
        def convertsMethodSignatureWithNoParamsToLink() {
            MethodMetaData method = method('someName', signature: 'someName()')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 8.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensionsTest.kt

            val objectFactory = mock<ObjectFactory> {
                on { named(any<Class<Named>>(), eq("foo")) } doReturn SomeNamed("foo")
            }
    
            val named = objectFactory.named<SomeNamed>("foo")
            assertThat(named.name, equalTo("foo"))
    
            inOrder(objectFactory) {
                verify(objectFactory).named(SomeNamed::class.java, "foo")
                verifyNoMoreInteractions()
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/base/distribution/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        distribution
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = "someName"
            distributionClassifier = "classifier"
            contents {
                from("src/readme")
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/eclipse/model/customProject.xml

                </arguments>
            </buildCommand>
        </buildSpec>
        <natures>
            <nature>org.eclipse.jdt.core.scalanature</nature>
        </natures>
        <linkedResources>
            <link>
                <name>somename</name>
                <type>sometype</type>
                <location>somelocation</location>
            </link>
        </linkedResources>
        <filteredResources>
            <filter>
                <id>1</id>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/base/distribution/groovy/build.gradle

    // tag::publish-distribution[]
    plugins {
    // end::publish-distribution[]
        id 'distribution'
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = 'someName'
            distributionClassifier = 'classifier'
            contents {
                from 'src/readme'
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 526 bytes
    - Viewed (0)
  10. 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)
Back to top