Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Putmsg (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    	if len(data) > 0 {
    		datap = &strbuf{
    			Len: int32(len(data)),
    			Buf: (*int8)(unsafe.Pointer(&data[0])),
    		}
    	}
    	return putmsg(fd, clp, datap, flags)
    }
    
    //sys	getmsg(fd int, clptr *strbuf, dataptr *strbuf, flags *int) (err error)
    
    func Getmsg(fd int, cl []byte, data []byte) (retCl []byte, retData []byte, flags int, err error) {
    	var clp, datap *strbuf
    	if len(cl) > 0 {
    		clp = &strbuf{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_port_get port_get "libc.so"
    //go:cgo_import_dynamic libc_port_getn port_getn "libc.so"
    //go:cgo_import_dynamic libc_putmsg putmsg "libc.so"
    //go:cgo_import_dynamic libc_getmsg getmsg "libc.so"
    
    //go:linkname procpipe libc_pipe
    //go:linkname procpipe2 libc_pipe2
    //go:linkname procgetsockname libc_getsockname
    //go:linkname procGetcwd libc_getcwd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  3. istioctl/pkg/checkinject/checkinject.go

    			} else if nsLabel != "" {
    				outMsg := fmt.Sprintf("Namespace label %s matches", nsLabel)
    				if strings.Contains(nsLabel, "kubernetes.io/metadata.name") {
    					outMsg += " (Automatic injection is enabled in all namespaces)."
    				}
    				return outMsg, true
    			} else if podLabel != "" {
    				return fmt.Sprintf("Pod label %s matches", podLabel), true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/proto/merge/merge.go

    	for _, opt := range opts {
    		mo = opt(mo)
    	}
    	dstMsg, srcMsg := dst.ProtoReflect(), src.ProtoReflect()
    	if dstMsg.Descriptor() != srcMsg.Descriptor() {
    		if got, want := dstMsg.Descriptor().FullName(), srcMsg.Descriptor().FullName(); got != want {
    			panic(fmt.Sprintf("descriptor mismatch: %v != %v", got, want))
    		}
    		panic("descriptor mismatch")
    	}
    	mo.mergeMessage(dstMsg, srcMsg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.col, err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.Pos.Col(), err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_ppc64le.go

    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_arm64.go

    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_loong64.go

    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_mips64le.go

    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top