Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for METHOD (0.1 sec)

  1. cluster/gce/gci/configure-helper.sh

            exit 1
          fi
          local mountpoint="/mnt/disks/ssd-nvme${devicenum}"
        fi
    
        safe-format-and-mount "${ssd}" "${mountpoint}"
        # We only do the bindmount if users are using the new local ssd request method
        # see https://github.com/kubernetes/kubernetes/pull/53466#discussion_r146431894
        if [[ -n "${NODE_LOCAL_SSDS_EXT:-}" ]]; then
          unique-uuid-bind-mount "${mountpoint}" "${actual_device}"
        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)
  2. pkg/proxy/nftables/proxier_test.go

    func NewFakeProxier(ipFamily v1.IPFamily) (*knftables.Fake, *Proxier) {
    	// TODO: Call NewProxier after refactoring out the goroutine
    	// invocation into a Run() method.
    	nftablesFamily := knftables.IPv4Family
    	podCIDR := "10.0.0.0/8"
    	serviceCIDRs := "172.30.0.0/16"
    	if ipFamily == v1.IPv6Protocol {
    		nftablesFamily = knftables.IPv6Family
    		podCIDR = "fd00:10::/64"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x0a, 0x00, 0x80, 0x00, 0x00,
    }
    
    // altLangISO3 holds an alphabetically sorted list of 3-letter language code alternatives
    // to 2-letter language codes that cannot be derived using the method described above.
    // Each 3-letter code is followed by its 1-byte langID.
    const altLangISO3 tag.Index = "---\x00cor\x00hbs\x01heb\x02kin\x03spa\x04yid\x05\xff\xff\xff\xff"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	a4    uint8 // Prog.To
    	a5    uint8 // 2nd destination operand, Prog.RegTo2 or Prog.RestArgs[XXX]
    	type_ int8
    	size_ int8 // the value of this field is not static, use the size() method to return the value
    	param int16
    	flag  int8
    	scond uint8
    }
    
    func IsAtomicInstruction(as obj.As) bool {
    	if _, ok := atomicLDADD[as]; ok {
    		return true
    	}
    	if _, ok := atomicSWP[as]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top