Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for eth3 (0.07 sec)

  1. src/net/interface.go

    // information.
    type Interface struct {
    	Index        int          // positive integer that starts at one, zero is never used
    	MTU          int          // maximum transmission unit
    	Name         string       // e.g., "en0", "lo0", "eth0.100"
    	HardwareAddr HardwareAddr // IEEE MAC-48, EUI-48 and EUI-64 form
    	Flags        Flags        // e.g., FlagUp, FlagLoopback, FlagMulticast
    }
    
    type Flags uint
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin_dryrun_test.go

    	return func(nspath string) (ns.NetNS, error) {
    		return &mockNetNs{path: netNs}, nil
    	}
    }
    
    func buildDryrunConf() string {
    	return fmt.Sprintf(
    		mockConfTmpl,
    		"1.0.0",
    		"1.0.0",
    		"eth0",
    		testSandboxDirectory,
    		"",
    		false,
    		"iptables",
    	)
    }
    
    func TestIPTablesRuleGeneration(t *testing.T) {
    	cniConf := buildDryrunConf()
    
    	customUID := int64(1000670000)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/util/iptables/testing/parse_test.go

    			name: "unrecognized arguments",
    			rule: `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    			err:  `unrecognized parameter "-i"`,
    		},
    		{
    			name:      "unrecognized arguments with strict=false",
    			rule:      `-A KUBE-SVC-4SW47YFZTEDKD3PK -m comment --comment ns4/svc4:p80 -i eth0 -j KUBE-SEP-UKSFD7AGPMPPLUHC`,
    			nonStrict: true,
    			parsed: &Rule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/syscall/mkerrors.sh

    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^CLONE_[A-Z_]+/ {next} # These are defined in exec_linux.go.
    		$2 ~ /^ELF_.*$/ {next}	# <asm/elf.h> contains ELF_ARCH, etc.
    
    		$2 !~ /^ETH_/ &&
    		$2 !~ /^EPROC_/ &&
    		$2 !~ /^EQUIV_/ &&
    		$2 !~ /^EXPR_/ &&
    		$2 ~ /^E[A-Z0-9_]+$/ ||
    		$2 ~ /^B[0-9_]+$/ ||
    		$2 ~ /^V[A-Z0-9]+$/ ||
    		$2 ~ /^CS[A-Z0-9]/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			name: "host:port",
    			in:   "example.com:80",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv6 with zone",
    			in:   "1234::abcd%eth0",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv4 with zone",
    			in:   "169.254.0.0%eth0",
    			err:  "must be a valid IP address",
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			errs := IsValidIP(field.NewPath(""), tc.in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    				Protocol: ptr.To(v1.ProtocolTCP),
    			}}
    		}),
    	)
    
    	itf := net.Interface{Index: 0, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0}
    	addrs := []net.Addr{&net.IPNet{IP: netutils.ParseIPSloppy("100.101.102.103"), Mask: net.CIDRMask(24, 32)}}
    	itf1 := net.Interface{Index: 1, MTU: 0, Name: "eth1", HardwareAddr: nil, Flags: 0}
    	addrs1 := []net.Addr{&net.IPNet{IP: netutils.ParseIPSloppy("2001:db8::"), Mask: net.CIDRMask(64, 128)}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/helper.go

    )
    
    // defaultNetworkInterfaceName is used for collectng network stats.
    // This logic relies on knowledge of the container runtime implementation and
    // is not reliable.
    const defaultNetworkInterfaceName = "eth0"
    
    func cadvisorInfoToCPUandMemoryStats(info *cadvisorapiv2.ContainerInfo) (*statsapi.CPUStats, *statsapi.MemoryStats) {
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. src/mdo/reader-stax.vm

            entities.put("Igrave", "\u00cc");
            entities.put("Iacute", "\u00cd");
            entities.put("Icirc", "\u00ce");
            entities.put("Iuml", "\u00cf");
            entities.put("ETH", "\u00d0");
            entities.put("Ntilde", "\u00d1");
            entities.put("Ograve", "\u00d2");
            entities.put("Oacute", "\u00d3");
            entities.put("Ocirc", "\u00d4");
            entities.put("Otilde", "\u00d5");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. src/cmd/vet/testdata/print/print.go

    	// in the testing package.
    	var et1 *testing.T
    	et1.Error()        // ok
    	et1.Error("hi")    // ok
    	et1.Error("%d", 3) // ERROR "Error call has possible Printf formatting directive %d"
    	var et3 errorTest3
    	et3.Error() // ok, not an error method.
    	var et4 errorTest4
    	et4.Error() // ok, not an error method.
    	var et5 errorTest5
    	et5.error() // ok, not an error method.
    	// Interfaces can be used with any verb.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Downarrow;":                       "\u21d3",
    	"&Dscr;":                            "\U0001d49f",
    	"&Dstrok;":                          "\u0110",
    	"&ENG;":                             "\u014a",
    	"&ETH;":                             "\u00d0",
    	"&Eacute;":                          "\u00c9",
    	"&Ecaron;":                          "\u011a",
    	"&Ecirc;":                           "\u00ca",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top