Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,626 for msgb (0.06 sec)

  1. test/fixedbugs/issue33355.go

    // See issue 33355.
    
    package server
    
    import (
    	"bytes"
    	"sync"
    )
    
    type client struct {
    	junk [4]int
    	mu   sync.Mutex
    	srv  *Server
    	gw   *gateway
    	msgb [100]byte
    }
    
    type gateway struct {
    	cfg    *gatewayCfg
    	outsim *sync.Map
    }
    
    type gatewayCfg struct {
    	replyPfx []byte
    }
    
    type Account struct {
    	Name string
    }
    
    type Server struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. internal/grid/msg.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    import (
    	"encoding/binary"
    	"fmt"
    	"strings"
    
    	"github.com/tinylib/msgp/msgp"
    	"github.com/zeebo/xxh3"
    )
    
    // Op is operation type.
    //
    //go:generate msgp -unexported -file=$GOFILE
    //go:generate stringer -type=Op -output=msg_string.go -trimprefix=Op $GOFILE
    
    // Op is operation type messages.
    type Op uint8
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmContext.java

            switch (state) {
                case 1:
                    Type1Message msg1 = new Type1Message(ntlmsspFlags, auth.getDomain(), workstation);
                    token = msg1.toByteArray();
    
                    if (log.level >= 4) {
                        log.println(msg1);
                        if (log.level >= 6)
                            Hexdump.hexdump(log, token, 0, token.length);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  4. internal/pubsub/pubsub_test.go

    	}
    	val := maskString("hello")
    	ps.Publish(val)
    
    	msg1 := <-ch1
    	msg2 := <-ch2
    	if msg1 != val && msg2 != val {
    		t.Fatalf(fmt.Sprintf("expected both subscribers to have%s , found %s and  %s", val, msg1, msg2))
    	}
    
    	select {
    	case msg := <-ch3:
    		t.Fatalf(fmt.Sprintf("unexpected msg, f got %s", msg))
    	default:
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmContext.java

                    }
                }
    
                this.ntlmsspFlags &= msg2.getFlags();
                Type3Message msg3 = createType3Message(msg2);
                msg3.setupMIC(this.type1Bytes, token);
    
                byte[] out = msg3.toByteArray();
    
                if ( log.isTraceEnabled() ) {
                    log.trace(msg3.toString());
                    log.trace(Hexdump.toHexString(token));
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/analysis/local/analyze_test.go

    	r2 := createTestResource(t, "ns2", "resource", "v1")
    	msg1 := msg.NewInternalError(r1, "msg")
    	msg2 := msg.NewInternalError(r2, "msg")
    	a := &testAnalyzer{
    		fn: func(ctx analysis.Context) {
    			ctx.Report(K8SCollection1.GroupVersionKind(), msg1)
    			ctx.Report(K8SCollection1.GroupVersionKind(), msg2)
    		},
    	}
    
    	sa := NewSourceAnalyzer(analysis.Combine("a", a), "ns1", "", nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/log/slog/logger_test.go

    		{panicTextAndJsonMarshaler{io.ErrUnexpectedEOF}, `{"time":"` + jsonTimeRE + `","level":"INFO","msg":"msg","p":"!PANIC: unexpected EOF"}`},
    		{panicTextAndJsonMarshaler{"panicking"}, `{"time":"` + jsonTimeRE + `","level":"INFO","msg":"msg","p":"!PANIC: panicking"}`},
    		{panicTextAndJsonMarshaler{42}, `{"time":"` + jsonTimeRE + `","level":"INFO","msg":"msg","p":"!PANIC: 42"}`},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/diag/messages_test.go

    		MockResource("B"),
    		"B",
    	)
    
    	msgs := Messages{firstMsg, secondMsg}
    	msgs.SetDocRef("istioctl-awesome")
    
    	getDocURL := func(msg Message) string {
    		return msg.Unstructured(false)["documentationUrl"].(string)
    	}
    
    	g.Expect(getDocURL(msgs[0])).To(Equal(url.ConfigAnalysis + "/b1/?ref=istioctl-awesome"))
    	g.Expect(getDocURL(msgs[1])).To(Equal(url.ConfigAnalysis + "/c1/?ref=istioctl-awesome"))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. istioctl/pkg/precheck/precheck.go

    	if err != nil {
    		return nil, err
    	}
    	msgs := diag.Messages{}
    
    	m, err := checkServerVersion(cli)
    	if err != nil {
    		return nil, err
    	}
    	msgs = append(msgs, m...)
    
    	msgs = append(msgs, checkInstallPermissions(cli, ctx.IstioNamespace())...)
    	gwMsg, err := checkGatewayAPIs(cli)
    	if err != nil {
    		return nil, err
    	}
    	msgs = append(msgs, gwMsg...)
    
    	// TODO: add more checks
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top