Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for eve (0.02 sec)

  1. src/go/build/testdata/directives/eve.go

    Russ Cox <******@****.***> 1669746650 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 36 bytes
    - Viewed (0)
  2. src/net/mail/example_test.go

    func ExampleParseAddressList() {
    	const list = "Alice <******@****.***>, Bob <******@****.***>, Eve <eve@example.com>"
    	emails, err := mail.ParseAddressList(list)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	for _, v := range emails {
    		fmt.Println(v.Name, v.Address)
    	}
    
    	// Output:
    	// Alice ******@****.***
    	// Bob ******@****.***
    	// Eve eve@example.com
    }
    
    func ExampleParseAddress() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/test/java/com/acme/FamilyTest.java

        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
            System.out.println("maggie() = " + maggie());
            assertEquals(5, family.size());
            assertTrue(family.contains(lisa()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/src/testFixtures/java/com/acme/Simpsons.java

        private static final Person BART = new Person("Bartholomew", "Simpson");
        private static final Person LISA = new Person("Elisabeth Marie", "Simpson");
        private static final Person MAGGIE = new Person("Margaret Eve", "Simpson");
        private static final List<Person> FAMILY = new ArrayList<Person>() {{
            add(HOMER);
            add(MARGE);
            add(BART);
            add(LISA);
            add(MAGGIE);
        }};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/test/java/com/acme/FamilyTest.java

        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
            System.out.println("maggie() = " + maggie());
            assertEquals(5, family.size());
            assertTrue(family.contains(lisa()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/src/testFixtures/java/com/acme/Simpsons.java

        private static final Person BART = new Person("Bartholomew", "Simpson");
        private static final Person LISA = new Person("Elisabeth Marie", "Simpson");
        private static final Person MAGGIE = new Person("Margaret Eve", "Simpson");
        private static final List<Person> FAMILY = new ArrayList<Person>() {{
            add(HOMER);
            add(MARGE);
            add(BART);
            add(LISA);
            add(MAGGIE);
        }};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/regexp/example_test.go

    	// Use raw strings to avoid having to quote the backslashes.
    	var validID = regexp.MustCompile(`^[a-z]+\[[0-9]+\]$`)
    
    	fmt.Println(validID.MatchString("adam[23]"))
    	fmt.Println(validID.MatchString("eve[7]"))
    	fmt.Println(validID.MatchString("Job[48]"))
    	fmt.Println(validID.MatchString("snakey"))
    	// Output:
    	// true
    	// true
    	// false
    	// false
    }
    
    func ExampleMatch() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. src/go/build/build_test.go

    		if s != want {
    			t.Errorf("%s = %s, want %s", name, s, want)
    		}
    	}
    	check("Directives", p.Directives,
    		`[{"//go:main1" "testdata/directives/a.go:1:1"} {"//go:plant" "testdata/directives/eve.go:1:1"}]`)
    	check("TestDirectives", p.TestDirectives,
    		`[{"//go:test1" "testdata/directives/a_test.go:1:1"} {"//go:test2" "testdata/directives/b_test.go:1:1"}]`)
    	check("XTestDirectives", p.XTestDirectives,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top