Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 111 for uint16 (0.16 sec)

  1. src/reflect/deepequal.go

    		return true
    	case Func:
    		if v1.IsNil() && v2.IsNil() {
    			return true
    		}
    		// Can't do better than this:
    		return false
    	case Int, Int8, Int16, Int32, Int64:
    		return v1.Int() == v2.Int()
    	case Uint, Uint8, Uint16, Uint32, Uint64, Uintptr:
    		return v1.Uint() == v2.Uint()
    	case String:
    		return v1.String() == v2.String()
    	case Bool:
    		return v1.Bool() == v2.Bool()
    	case Float32, Float64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/config/config.go

    	OutboundIPRangesExclude string        `json:"OUTBOUND_IPRANGES_EXCLUDE"`
    	KubeVirtInterfaces      string        `json:"KUBE_VIRT_INTERFACES"`
    	ExcludeInterfaces       string        `json:"EXCLUDE_INTERFACES"`
    	IptablesProbePort       uint16        `json:"IPTABLES_PROBE_PORT"`
    	ProbeTimeout            time.Duration `json:"PROBE_TIMEOUT"`
    	DryRun                  bool          `json:"DRY_RUN"`
    	RestoreFormat           bool          `json:"RESTORE_FORMAT"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		case types.UntypedBool,
    			types.Bool:
    			return m.t&argBool != 0
    
    		case types.UntypedInt,
    			types.Int,
    			types.Int8,
    			types.Int16,
    			types.Int32,
    			types.Int64,
    			types.Uint,
    			types.Uint8,
    			types.Uint16,
    			types.Uint32,
    			types.Uint64,
    			types.Uintptr:
    			return m.t&argInt != 0
    
    		case types.UntypedFloat,
    			types.Float32,
    			types.Float64:
    			return m.t&argFloat != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/os/path_windows_test.go

    	}
    
    	vol, err := syscall.UTF16PtrFromString(filepath.VolumeName(t.TempDir()) + `\`)
    	if err != nil {
    		t.Fatal(err)
    	}
    	const maxVolNameLen = 50
    	var buf [maxVolNameLen]uint16
    	err = windows.GetVolumeNameForVolumeMountPoint(vol, &buf[0], maxVolNameLen)
    	if err != nil {
    		t.Fatal(err)
    	}
    	volName := syscall.UTF16ToString(buf[:])
    	testMkdirAllAtRoot(t, volName)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/ingress.go

    		return []netip.AddrPort{{}}
    	}
    	for i, host := range hosts {
    		ip, err := netip.ParseAddr(host)
    		if err != nil {
    			return []netip.AddrPort{}
    		}
    		addrs = append(addrs, netip.AddrPortFrom(ip, uint16(ports[i])))
    	}
    
    	return addrs
    }
    
    func (c *ingressImpl) Call(options echo.CallOptions) (echo.CallResult, error) {
    	return c.callEcho(options)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/net/resolverdialfunc_test.go

    		panic(err)
    	}
    }
    
    type SRVWriter struct{ ResponseWriter }
    
    // AddSRV adds a SRV record. The target name must end in a period and
    // be 63 bytes or fewer.
    func (w SRVWriter) AddSRV(priority, weight, port uint16, target string) error {
    	targetName, err := dnsmessage.NewName(target)
    	if err != nil {
    		return err
    	}
    	w.a.wrote = true
    	err = w.a.builder.SRVResource(w.header(), dnsmessage.SRVResource{
    		Priority: priority,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/os/dir_windows.go

    				d.class = windows.FileFullDirectoryInfo
    			}
    		}
    		// Drain the buffer
    		var islast bool
    		for n != 0 && !islast {
    			var nextEntryOffset uint32
    			var nameslice []uint16
    			entry := unsafe.Pointer(&(*d.buf)[d.bufp])
    			if d.class == windows.FileIdBothDirectoryInfo {
    				info := (*windows.FILE_ID_BOTH_DIR_INFO)(entry)
    				nextEntryOffset = info.NextEntryOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/compress/gzip/gzip.go

    	w           io.Writer
    	level       int
    	wroteHeader bool
    	closed      bool
    	buf         [10]byte
    	compressor  *flate.Writer
    	digest      uint32 // CRC-32, IEEE polynomial (section 8)
    	size        uint32 // Uncompressed size (section 2.3.1)
    	err         error
    }
    
    // NewWriter returns a new [Writer].
    // Writes to the returned writer are compressed and written to w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/sizes.go

    			offs = -1 // f.typ or offs is too large
    		}
    	}
    	return offsets
    }
    
    var basicSizes = [...]byte{
    	Bool:       1,
    	Int8:       1,
    	Int16:      2,
    	Int32:      4,
    	Int64:      8,
    	Uint8:      1,
    	Uint16:     2,
    	Uint32:     4,
    	Uint64:     8,
    	Float32:    4,
    	Float64:    8,
    	Complex64:  8,
    	Complex128: 16,
    }
    
    func (s *StdSizes) Sizeof(T Type) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/go/types/sizes.go

    			offs = -1 // f.typ or offs is too large
    		}
    	}
    	return offsets
    }
    
    var basicSizes = [...]byte{
    	Bool:       1,
    	Int8:       1,
    	Int16:      2,
    	Int32:      4,
    	Int64:      8,
    	Uint8:      1,
    	Uint16:     2,
    	Uint32:     4,
    	Uint64:     8,
    	Float32:    4,
    	Float64:    8,
    	Complex64:  8,
    	Complex128: 16,
    }
    
    func (s *StdSizes) Sizeof(T Type) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top