Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for illumos (0.19 sec)

  1. src/internal/goos/gengoos.go

    			continue
    		}
    		var tags []string
    		if target == "linux" {
    			tags = append(tags, "!android") // must explicitly exclude android for linux
    		}
    		if target == "solaris" {
    			tags = append(tags, "!illumos") // must explicitly exclude illumos for solaris
    		}
    		if target == "darwin" {
    			tags = append(tags, "!ios") // must explicitly exclude ios for darwin
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/goos/zgoos_solaris.go

    // Code generated by gengoos.go using 'go generate'. DO NOT EDIT.
    
    //go:build !illumos && solaris
    
    package goos
    
    const GOOS = `solaris`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 469 bytes
    - Viewed (0)
  3. src/cmd/go/internal/imports/testdata/illumos/c_solaris.go

    package illumos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 20 17:47:10 UTC 2019
    - 30 bytes
    - Viewed (0)
  4. src/net/tcpconn_keepalive_conf_unix_test.go

    // Copyright 2023 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.
    
    //go:build aix || dragonfly || freebsd || illumos || linux || netbsd
    
    package net
    
    import (
    	"syscall"
    	"testing"
    )
    
    const (
    	syscall_TCP_KEEPIDLE  = syscall.TCP_KEEPIDLE
    	syscall_TCP_KEEPCNT   = syscall.TCP_KEEPCNT
    	syscall_TCP_KEEPINTVL = syscall.TCP_KEEPINTVL
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 490 bytes
    - Viewed (0)
  5. src/cmd/go/internal/imports/testdata/illumos/tags.txt

    illumos amd64...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 20 17:47:10 UTC 2019
    - 14 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    // Copyright 2021 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.
    
    // illumos system calls not present on Solaris.
    
    //go:build amd64 && illumos
    
    package unix
    
    import (
    	"unsafe"
    )
    
    func bytes2iovec(bs [][]byte) []Iovec {
    	iovecs := make([]Iovec, len(bs))
    	for i, b := range bs {
    		iovecs[i].SetLen(len(b))
    		if len(b) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/imports/testdata/illumos/b_illumos_amd64.go

    package illumos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 20 17:47:10 UTC 2019
    - 30 bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/testdata/illumos/d_solaris_amd64.go

    package illumos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 20 17:47:10 UTC 2019
    - 30 bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/testdata/illumos/f.go

    //go:build solaris
    // +build solaris
    
    package illumos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 68 bytes
    - Viewed (0)
  10. src/internal/platform/zosarch.go

    	{"android", "arm64"},
    	{"darwin", "amd64"},
    	{"darwin", "arm64"},
    	{"dragonfly", "amd64"},
    	{"freebsd", "386"},
    	{"freebsd", "amd64"},
    	{"freebsd", "arm"},
    	{"freebsd", "arm64"},
    	{"freebsd", "riscv64"},
    	{"illumos", "amd64"},
    	{"ios", "amd64"},
    	{"ios", "arm64"},
    	{"js", "wasm"},
    	{"linux", "386"},
    	{"linux", "amd64"},
    	{"linux", "arm"},
    	{"linux", "arm64"},
    	{"linux", "loong64"},
    	{"linux", "mips"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top