Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for drop (0.61 sec)

  1. api/go1.3.txt

    pkg syscall (freebsd-386), const ENOTRECOVERABLE Errno
    pkg syscall (freebsd-386), const EOWNERDEAD = 96
    pkg syscall (freebsd-386), const EOWNERDEAD Errno
    pkg syscall (freebsd-386), const EV_DROP = 4096
    pkg syscall (freebsd-386), const EV_DROP ideal-int
    pkg syscall (freebsd-386), const IPPROTO_MPLS = 137
    pkg syscall (freebsd-386), const IPPROTO_MPLS ideal-int
    pkg syscall (freebsd-386), const MAP_ALIGNED_SUPER = 16777216
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			// so we don't know how they correspond to Go fields
    			// even if they are aligned at byte boundaries.
    			continue
    		}
    
    		if talign > 0 && f.ByteOffset%talign != 0 {
    			// Drop misaligned fields, the same way we drop integer bit fields.
    			// The goal is to make available what can be made available.
    			// Otherwise one bad and unneeded field in an otherwise okay struct
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_DF = 16384
    pkg syscall (netbsd-arm64-cgo), const IP_DF ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_DROP_MEMBERSHIP = 13
    pkg syscall (netbsd-arm64-cgo), const IP_EF = 32768
    pkg syscall (netbsd-arm64-cgo), const IP_EF ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_ERRORMTU = 21
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
    pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
    pkg syscall (darwin-386), const IP_DF ideal-int
    pkg syscall (darwin-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
    pkg syscall (darwin-386), const IP_DUMMYNET_CONFIGURE ideal-int
    pkg syscall (darwin-386), const IP_DUMMYNET_DEL ideal-int
    pkg syscall (darwin-386), const IP_DUMMYNET_FLUSH ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IP_DONTFRAG = 67
    pkg syscall (freebsd-arm64), const IP_DONTFRAG ideal-int
    pkg syscall (freebsd-arm64), const IP_DROP_MEMBERSHIP = 13
    pkg syscall (freebsd-arm64), const IP_DROP_SOURCE_MEMBERSHIP = 71
    pkg syscall (freebsd-arm64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE = 60
    pkg syscall (freebsd-arm64), const IP_DUMMYNET_CONFIGURE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const IP_DF = 16384
    pkg syscall (darwin-arm64), const IP_DF ideal-int
    pkg syscall (darwin-arm64), const IP_DROP_MEMBERSHIP = 13
    pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP = 71
    pkg syscall (darwin-arm64), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
    pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE = 60
    pkg syscall (darwin-arm64), const IP_DUMMYNET_CONFIGURE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_TTL = 1
    pkg syscall (darwin-386), const IP_DF = 16384
    pkg syscall (darwin-386), const IP_DROP_MEMBERSHIP = 13
    pkg syscall (darwin-386), const IP_DROP_SOURCE_MEMBERSHIP = 71
    pkg syscall (darwin-386), const IP_DUMMYNET_CONFIGURE = 60
    pkg syscall (darwin-386), const IP_DUMMYNET_DEL = 61
    pkg syscall (darwin-386), const IP_DUMMYNET_FLUSH = 62
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. src/bufio/bufio.go

    	}
    
    	if len(line) == 0 {
    		if err != nil {
    			line = nil
    		}
    		return
    	}
    	err = nil
    
    	if line[len(line)-1] == '\n' {
    		drop := 1
    		if len(line) > 1 && line[len(line)-2] == '\r' {
    			drop = 2
    		}
    		line = line[:len(line)-drop]
    	}
    	return
    }
    
    // collectFragments reads until the first occurrence of delim in the input. It
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    	if string(m) != expect {
    		t.Errorf("rot13: expected %q got %q", expect, m)
    	}
    
    	// 5. Drop
    	dropNotLatin := func(r rune) rune {
    		if unicode.Is(unicode.Latin, r) {
    			return r
    		}
    		return -1
    	}
    	m = Map(dropNotLatin, []byte("Hello, 세계"))
    	expect = "Hello"
    	if string(m) != expect {
    		t.Errorf("drop: expected %q got %q", expect, m)
    	}
    
    	// 6. Invalid rune
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DF ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DONTFRAG ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DUMMYNET3 ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
    pkg syscall (freebsd-386-cgo), const IP_DUMMYNET_DEL ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top