Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,106 for 200M (0.04 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		User:            &user.DefaultInfo{Name: "alice"},
    		ResourceRequest: true,
    		Verb:            strings.Repeat("v", 2000),
    		APIGroup:        strings.Repeat("g", 2000),
    		APIVersion:      strings.Repeat("a", 2000),
    		Resource:        strings.Repeat("r", 2000),
    		Name:            strings.Repeat("n", 2000),
    	}
    	bobRidiculousAttr := authorizer.AttributesRecord{
    		User:            &user.DefaultInfo{Name: "bob"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 9.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HostAndPort.java

     *
     * <p>Example usage:
     *
     * <pre>
     * HostAndPort hp = HostAndPort.fromString("[2001:db8::1]")
     *     .withDefaultPort(80)
     *     .requireBracketsForIPv6();
     * hp.getHost();   // returns "2001:db8::1"
     * hp.getPort();   // returns 80
     * hp.toString();  // returns "[2001:db8::1]:80"
     * </pre>
     *
     * <p>Here are some examples of recognized formats:
     *
     * <ul>
     *   <li>example.com
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/net/ip.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // IP address manipulations
    //
    // IPv4 addresses are 4 bytes; IPv6 addresses are 16 bytes.
    // An IPv4 address can be converted to an IPv6 address by
    // adding a canonical prefix (10 zeros, 2 0xFFs).
    // This library accepts either size of byte slice but always
    // returns 16-byte addresses.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HostAndPort.java

     *
     * <p>Example usage:
     *
     * <pre>
     * HostAndPort hp = HostAndPort.fromString("[2001:db8::1]")
     *     .withDefaultPort(80)
     *     .requireBracketsForIPv6();
     * hp.getHost();   // returns "2001:db8::1"
     * hp.getPort();   // returns 80
     * hp.toString();  // returns "[2001:db8::1]:80"
     * </pre>
     *
     * <p>Here are some examples of recognized formats:
     *
     * <ul>
     *   <li>example.com
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_test.go

    				netutils.ParseIPSloppy("90.90.90.90"),
    				netutils.ParseIPSloppy("2001:db8::2"),
    			},
    			bindAddress:    "2001:db8::555",
    			expectedFamily: v1.IPv6Protocol,
    			expectedIPv4:   "90.90.90.90",
    			expectedIPv6:   "2001:db8::555",
    		},
    		{
    			name: "Dual stack, override primary family, IPv4",
    			rawNodeIPs: []net.IP{
    				netutils.ParseIPSloppy("2001:db8::2"),
    				netutils.ParseIPSloppy("90.90.90.90"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/lds_test.go

    		err := adscon.Save(wd + "/none")
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// 7071 (inbound), 2001 (service - also as http proxy), 18010 (fortio)
    		if len(adscon.GetHTTPListeners()) != 3 {
    			t.Error("HTTP listeners, expecting 3 got", len(adscon.GetHTTPListeners()), xdstest.MapKeys(adscon.GetHTTPListeners()))
    		}
    
    		// s1tcp:2000 outbound, bind=true (to reach other instances of the service)
    		// s1:5005 outbound, bind=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/TimeoutTest.java

                @Override
                public int getSoTimeout () {
                    return 2000;
                }
    
    
                @Override
                public int getConnTimeout () {
                    return 2000;
                }
    
    
                @Override
                public int getSessionTimeout () {
                    return 2000;
                }
            });
    
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks_test.go

    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    				CIDR:  "2001:db8::/56",
    			}, // Expected to be accessed directly, part of 2001:db8::/48 in NO_PROXY
    			expectWarnings: false,
    		},
    		{
    			check: HTTPProxyCIDRCheck{
    				Proto: "https",
    				CIDR:  "2001:db8:1::/56",
    			}, // Expected to go via proxy, range is not in 2001:db8::/48
    			expectWarnings: true,
    		},
    	}
    
    	resetProxyEnv(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top