Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 610 for cmsg (0.06 sec)

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

    		if len(p) == 0 {
    			iov.Base = &dummy
    			iov.SetLen(1)
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	msg.Iov = &iov
    	msg.Iovlen = 1
    	if n, err = recvmsg(fd, &msg, flags); err != nil {
    		return
    	}
    	oobn = int(msg.Controllen)
    	recvflags = int(msg.Flags)
    	// source address is only specified if the socket is unconnected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Console2(cmsg *ConsMsg2, modstr *byte, concmd *uint32) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___CONSOLE2<<4, uintptr(unsafe.Pointer(cmsg)), uintptr(unsafe.Pointer(modstr)), uintptr(unsafe.Pointer(concmd)))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  3. cmd/server-startup-msg.go

    		msg += color.Blue("Status:") + fmt.Sprintf(getFormatStr(len(diskInfo), 8), diskInfo)
    		if len(mcMessage) > 0 {
    			msg = fmt.Sprintf("%s %s", mcMessage, msg)
    		}
    	}
    	return msg
    }
    
    // Prints startup message of storage capacity and erasure information.
    func printStorageInfo(storageInfo StorageInfo) {
    	if msg := getStorageInfoMsg(storageInfo); msg != "" {
    		logger.Info(msg)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/crypto/rsa/pkcs1v15.go

    			return nil, err
    		}
    		return boring.EncryptRSAPKCS1(bkey, msg)
    	}
    	boring.UnreachableExceptTests()
    
    	// EM = 0x00 || 0x02 || PS || 0x00 || M
    	em := make([]byte, k)
    	em[1] = 2
    	ps, mm := em[2:len(em)-len(msg)-1], em[len(em)-len(msg):]
    	err := nonZeroRandomBytes(ps, random)
    	if err != nil {
    		return nil, err
    	}
    	em[len(em)-len(msg)-1] = 0
    	copy(mm, msg)
    
    	if boring.Enabled {
    		var bkey *boring.PublicKeyRSA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. internal/grid/muxserver.go

    }
    
    func newMuxStateless(ctx context.Context, msg message, c *Connection, handler StatelessHandler) *muxServer {
    	var cancel context.CancelFunc
    	ctx = setCaller(ctx, c.remote)
    	if msg.DeadlineMS > 0 {
    		ctx, cancel = context.WithTimeout(ctx, time.Duration(msg.DeadlineMS)*time.Millisecond)
    	} else {
    		ctx, cancel = context.WithCancel(ctx)
    	}
    	m := muxServer{
    		ID:        msg.MuxID,
    		RecvSeq:   msg.Seq + 1,
    		SendSeq:   msg.Seq,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.AlphaAnnotation, "Pod invalid-annotations"},
    			{msg.AlphaAnnotation, "Pod invalid-annotations"},
    			{msg.AlphaAnnotation, "Service httpbin"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    		},
    		skipAll: true,
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. internal/logger/console.go

    			args = append(args, msg)
    			msg = "%s"
    		}
    		console.quiet(msg+"\n", args...)
    	default:
    		if len(msg) != 0 && len(args) == 0 {
    			args = append(args, msg)
    			msg = "%s"
    		}
    		console.pretty(msg+"\n", args...)
    	}
    }
    
    // Fatal prints only fatal error message with no stack trace
    // it will be called for input validation failures
    func Fatal(err error, msg string, data ...interface{}) {
    	fatal(err, msg, data...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return 0
    }
    
    // pack appends the wire format of the header to msg.
    func (h *header) pack(msg []byte) []byte {
    	msg = packUint16(msg, h.id)
    	msg = packUint16(msg, h.bits)
    	msg = packUint16(msg, h.questions)
    	msg = packUint16(msg, h.answers)
    	msg = packUint16(msg, h.authorities)
    	return packUint16(msg, h.additionals)
    }
    
    func (h *header) unpack(msg []byte, off int) (int, error) {
    	newOff := off
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  9. cluster/addons/node-problem-detector/npd.yaml

            - name: log
              mountPath: /var/log
            - name: kmsg
              mountPath: /dev/kmsg
              readOnly: true
            - name: localtime
              mountPath: /etc/localtime
              readOnly: true
          volumes:
          - name: log
            hostPath:
              path: /var/log/
          - name: kmsg
            hostPath:
              path: /dev/kmsg
          - name: localtime
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/util/protomarshal/protomarshal.go

    		Resolver:       anyResolver,
    	}).Unmarshal(b, m)
    }
    
    // ToJSON marshals a proto to canonical JSON
    func ToJSON(msg proto.Message) (string, error) {
    	return ToJSONWithIndent(msg, "")
    }
    
    // Marshal marshals a proto to canonical JSON
    func Marshal(msg proto.Message) ([]byte, error) {
    	res, err := ToJSONWithIndent(msg, "")
    	if err != nil {
    		return nil, err
    	}
    	return []byte(res), err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top