Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,137 for 200G (0.13 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipv6-uid-gid.golden

    ip6tables -t nat -A ISTIO_OUTPUT -d ::1/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -d 2001:db8::/32 -j RETURN
    ip6tables -t nat -I PREROUTING 1 -i eth0 -d 2001:db8::/32 -j ISTIO_REDIRECT
    ip6tables -t nat -I PREROUTING 1 -i eth1 -d 2001:db8::/32 -j ISTIO_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -d 2001:db8::/32 -j ISTIO_REDIRECT
    iptables-save
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    org.apache.maven.plugins maven-compiler-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.properties #Generated by Maven #Sat Oct 24 00:48:12 CEST 2009 version=0.1 groupId=org.apache.maven.plugins artifactId=maven-compiler-plugin...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.jar

    org.apache.maven.plugins maven-plugin-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.plugins/maven-plugin-plugin/pom.properties #Generated by Maven #Sat Oct 24 00:50:46 CEST 2009 version=0.1 groupId=org.apache.maven.plugins artifactId=maven-plugin-plugin...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    gins maven-resources-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.plugins/maven-resources-plugin/pom.properties #Generated by Maven #Sat Oct 24 00:49:57 CEST 2009 version=0.1 groupId=org.apache.maven.plugins artifactId=maven-resources-plugin...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6.
    // Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1
    // Invalid: 10.01.2.3 or 2001:db8:0:0:0::1
    message IPAddress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. src/crypto/tls/handshake_messages_test.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.
    
    package tls
    
    import (
    	"bytes"
    	"crypto/x509"
    	"encoding/hex"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    	"testing/quick"
    	"time"
    )
    
    var tests = []handshakeMessage{
    	&clientHelloMsg{},
    	&serverHelloMsg{},
    	&finishedMsg{},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    					Capacity: v1.ResourceList{
    						v1.ResourceCPU:    *resource.NewMilliQuantity(2000, resource.DecimalSI),
    						v1.ResourceMemory: *resource.NewQuantity(1024, resource.BinarySI),
    						v1.ResourcePods:   *resource.NewQuantity(110, resource.DecimalSI),
    					},
    					Allocatable: v1.ResourceList{
    						v1.ResourceCPU:    *resource.NewMilliQuantity(2000, resource.DecimalSI),
    						v1.ResourceMemory: *resource.NewQuantity(1024, resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run_test.go

    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "4000,5000"
    				cfg.InboundPortsExclude = "6000,7000,"
    				cfg.KubeVirtInterfaces = "eth0,eth1"
    				cfg.OutboundIPRangesExclude = "2001:db8::/32"
    				cfg.OutboundIPRangesInclude = "2001:db8::/32"
    				cfg.EnableIPv6 = true
    			},
    		},
    		{
    			"ipv6-uid-gid",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "4000,5000"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top