Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 543 for cmsg (0.04 sec)

  1. src/syscall/syscall_linux_386.go

    		err = e
    	}
    	return
    }
    
    func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	n, e := socketcall(_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)
    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	n, e := socketcall(_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)
    	if e != 0 {
    		err = e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/log/scope_test.go

    			func() { klog.ErrorS(errors.New("my error"), "info") },
    			"error\tklog\tmy error: info",
    		},
    		{
    			func() { klog.Info("a", "b") },
    			"info\tklog\tab",
    		},
    		{
    			func() { klog.InfoS("msg", "key", 1) },
    			"info\tklog\tmsg\tkey=1",
    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info", "key", 1) },
    			"error\tklog\tmy error: info\tkey=1",
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/prober/worker_test.go

    		for j := 0; j < 2; j++ {
    			msg := fmt.Sprintf("%d success (%d)", j+1, i)
    			expectContinue(t, w, w.doProbe(ctx), msg)
    			expectResult(t, w, results.Failure, msg)
    		}
    
    		// Continuing success!
    		for j := 0; j < 3; j++ {
    			msg := fmt.Sprintf("%d success (%d)", j+3, i)
    			expectContinue(t, w, w.doProbe(ctx), msg)
    			expectResult(t, w, results.Success, msg)
    		}
    
    		// Prober flakes :(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. 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)
  6. src/log/slog/logger.go

    	l.log(ctx, LevelInfo, msg, args...)
    }
    
    // Warn logs at [LevelWarn].
    func (l *Logger) Warn(msg string, args ...any) {
    	l.log(context.Background(), LevelWarn, msg, args...)
    }
    
    // WarnContext logs at [LevelWarn] with the given context.
    func (l *Logger) WarnContext(ctx context.Context, msg string, args ...any) {
    	l.log(ctx, LevelWarn, msg, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. internal/grid/muxclient.go

    	}
    	return m.sendLocked(msg)
    }
    
    // sendLocked the message. msg.Seq and msg.MuxID will be set.
    // m.respMu must be held.
    func (m *muxClient) sendLocked(msg message) error {
    	dst := GetByteBufferCap(msg.Msgsize())
    	msg.Seq = m.SendSeq
    	msg.MuxID = m.MuxID
    	msg.Flags |= m.BaseFlags
    	if debugPrint {
    		fmt.Println("Client sending", &msg, "to", m.parent.Remote)
    	}
    	m.SendSeq++
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    	Opts     DeleteOptions `msg:"do"`
    }
    
    // RenameDataHandlerParams are parameters for RenameDataHandler.
    type RenameDataHandlerParams struct {
    	DiskID    string        `msg:"id"`
    	SrcVolume string        `msg:"sv"`
    	SrcPath   string        `msg:"sp"`
    	DstVolume string        `msg:"dv"`
    	DstPath   string        `msg:"dp"`
    	FI        FileInfo      `msg:"fi"`
    	Opts      RenameOptions `msg:"ro"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

                    {
                        "type": "missing",
                        "loc": ["body", "file"],
                        "msg": "Field required",
                        "input": None,
                    },
                    {
                        "type": "missing",
                        "loc": ["body", "fileb"],
                        "msg": "Field required",
                        "input": None,
                    },
                    {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

            }
        }
    
        @Override
        public void debug(String msg, Throwable t) {
            if (isDebugEnabled()) {
                log(LogLevel.DEBUG, t, msg);
            }
        }
    
        @Override
        public void debug(Marker marker, String msg) {
            if (isDebugEnabled(marker)) {
                log(LogLevel.DEBUG, null, msg);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top