Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for LOCALDOMAIN (0.11 sec)

  1. src/net/testdata/resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    nameserver 8.8.8.8
    nameserver 2001:4860:4860::8888
    nameserver fe80::1%lo0
    options ndots:5 timeout:10 attempts:3 rotate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 177 bytes
    - Viewed (0)
  2. maven-model/src/test/java/org/apache/maven/model/OrganizationTest.java

        public void testToStringNotNonsense11() {
            Organization org = new Organization();
            org.setName("Testing Maven Unit");
            org.setUrl("https://maven.localdomain");
    
            assertEquals("Organization {name=Testing Maven Unit, url=https://maven.localdomain}", org.toString());
        }
    
        public void testToStringNotNonsense10() {
            Organization org = new Organization();
            org.setName("Testing Maven Unit");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/net/testdata/domain-resolv.conf

    # /etc/resolv.conf
    
    search test invalid
    domain localdomain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 78 bytes
    - Viewed (0)
  4. src/net/hosts_test.go

    		[]staticHostEntry{
    			{"localhost", []string{"127.0.0.1", "127.0.0.2", "127.0.0.3"}},
    			{"localhost.localdomain", []string{"127.0.0.3"}},
    		},
    	},
    	{
    		"testdata/ipv6-hosts", // see golang.org/issue/8996
    		[]staticHostEntry{
    			{"localhost", []string{"::1", "fe80::1", "fe80::2%lo0", "fe80::3%lo0"}},
    			{"localhost.localdomain", []string{"fe80::3%lo0"}},
    		},
    	},
    	{
    		"testdata/case-hosts", // see golang.org/issue/12806
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-model/src/test/java/org/apache/maven/model/IssueManagementTest.java

            IssueManagement im = new IssueManagement();
            im.setSystem("Velociraptor");
            im.setUrl("https://velo.localdomain");
    
            String s = im.toString();
    
            assert "IssueManagement {system=Velociraptor, url=https://velo.localdomain}".equals(s) : s;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/net/testdata/ipv6-hosts

    # internet address with zone identifier and host name
    fe80:0000:0000:0000:0000:0000:0000:0002%lo0	localhost
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 02 11:47:06 UTC 2015
    - 460 bytes
    - Viewed (0)
  7. src/net/testdata/search-single-dot-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:01:14 UTC 2022
    - 67 bytes
    - Viewed (0)
  8. src/net/conf_test.go

    				{"Anything.localhost", "myhostname", hostLookupCgo},
    				{"localhost.localdomain", "myhostname", hostLookupCgo},
    				{"Localhost.Localdomain", "myhostname", hostLookupCgo},
    				{"anything.localhost.localdomain", "myhostname", hostLookupCgo},
    				{"Anything.Localhost.Localdomain", "myhostname", hostLookupCgo},
    				{"somehostname", "myhostname", hostLookupFilesDNS},
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. maven-model/src/test/java/org/apache/maven/model/LicenseTest.java

        public void testToStringNotNonsense() {
            License license = new License();
            license.setName("Unlicense");
            license.setUrl("http://lic.localdomain");
    
            String s = license.toString();
    
            assert "License {name=Unlicense, url=http://lic.localdomain}".equals(s) : s;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-model/src/test/java/org/apache/maven/model/ScmTest.java

        }
    
        public void testToStringNotNonsense() {
            Scm scm = new Scm();
            scm.setConnection("scm:git:git://git.localdomain/model");
    
            String s = scm.toString();
    
            assertEquals("Scm {connection=scm:git:git://git.localdomain/model}", s);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top