Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for adir (0.33 sec)

  1. src/debug/elf/elf.go

    // ELF32 Section header.
    type Section32 struct {
    	Name      uint32 /* Section name (index into the section header string table). */
    	Type      uint32 /* Section type. */
    	Flags     uint32 /* Section flags. */
    	Addr      uint32 /* Address in memory image. */
    	Off       uint32 /* Offset in file. */
    	Size      uint32 /* Size in bytes. */
    	Link      uint32 /* Index of a related section. */
    	Info      uint32 /* Depends on section type. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    				count += len(ss.Addresses)
    				for i := range ss.Addresses {
    					if len(list) == max {
    						more = true
    						// the next loop is redundant
    						break
    					}
    					addr := &ss.Addresses[i]
    					hostPort := net.JoinHostPort(addr.IP, strconv.Itoa(int(port.Port)))
    					list = append(list, hostPort)
    				}
    			}
    		}
    	}
    
    	ret := strings.Join(list, ",")
    	if more {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    	addrs := []net.Addr{
    		&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy("::1/128"), Mask: net.CIDRMask(128, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf, addrs)
    	itf1 := net.Interface{Index: 1, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0}
    	addrs1 := []net.Addr{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteWasm.go

    		return rewriteValueWasm_OpZeroExt8to32(v)
    	case OpZeroExt8to64:
    		return rewriteValueWasm_OpZeroExt8to64(v)
    	}
    	return false
    }
    func rewriteValueWasm_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (LoweredAddr {sym} [0] base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpWasmLoweredAddr)
    		v.AuxInt = int32ToAuxInt(0)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        return "${status}"
      else
        echo "${default}"
      fi
    }
    
    # A helper function for copying manifests and setting dir/files
    # permissions.
    #
    # $1: absolute source dir
    # $2: absolute destination dir
    function copy-manifests {
      local -r src_dir="$1"
      local -r dst_dir="$2"
      if [[ ! -d "${dst_dir}" ]]; then
        mkdir -p "${dst_dir}"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * make --runtime-config=api/all=true|false work ([#32582](https://github.com/kubernetes/kubernetes/pull/32582), [@jlowdermilk](https://github.com/jlowdermilk))
    * Added new kubelet flags `--cni-bin-dir` and `--cni-conf-dir` to specify where CNI files are located. ([#32151](https://github.com/kubernetes/kubernetes/pull/32151), [@bboreham](https://github.com/bboreham))
        * Fixed CNI configuration on GCI platform when using CNI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.reset(OpMIPSADD)
    		v0 := b.NewValue0(v.Pos, OpMIPSADD, t)
    		v0.AddArg2(x, y)
    		v.AddArg2(c, v0)
    		return true
    	}
    }
    func rewriteValueMIPS_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVWaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpMIPSMOVWaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return true
    	case OpZeroExt8to64:
    		v.Op = OpLOONG64MOVBUreg
    		return true
    	}
    	return false
    }
    func rewriteValueLOONG64_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVVaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpLOONG64MOVVaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    valueFrom: resourceFieldRef: resource: limits.cpu volumeMounts: - mountPath: /host/opt/cni/bin name: cni-bin-dir - mountPath: /host/etc/cni/net.d name: cni-net-dir - mountPath: /var/run/istio-cni name: cni-log-dir {{- if .Values.cni.ambient.enabled }} - mountPath: /etc/ambient-config name: cni-ambient-config-dir - mountPath: /var/run/netns mountPropagation: HostToContainer name: cni-netns-dir {{- if eq .Values.cni.ambient.redirectMode "ebpf"}} - mountPath: /sys/fs/bpf mountPropagation: Bidirectional...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		return true
    	case OpZeroExt8to64:
    		v.Op = OpMIPS64MOVBUreg
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS64_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVVaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpMIPS64MOVVaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top