Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 273 for message2 (0.11 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *Endpoint) XXX_Merge(src proto.Message) {
    	xxx_messageInfo_Endpoint.Merge(m, src)
    }
    func (m *Endpoint) XXX_Size() int {
    	return m.Size()
    }
    func (m *Endpoint) XXX_DiscardUnknown() {
    	xxx_messageInfo_Endpoint.DiscardUnknown(m)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. src/syscall/zerrors_netbsd_386.go

    	80: "authentication error",
    	81: "need authenticator",
    	82: "identifier removed",
    	83: "no message of desired type",
    	84: "value too large to be stored in data type",
    	85: "illegal byte sequence",
    	86: "not supported",
    	87: "operation Canceled",
    	88: "bad or Corrupt message",
    	89: "no message available",
    	90: "no STREAM resources",
    	91: "not a STREAM",
    	92: "STREAM ioctl timeout",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	runSkips       = flag.Bool("run_skips", false, "run skipped tests (ignore skip and build tags)")
    	linkshared     = flag.Bool("linkshared", false, "")
    	updateErrors   = flag.Bool("update_errors", false, "update error messages in test file based on compiler output")
    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    	force          = flag.Bool("f", false, "ignore expected-failure test lists")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    											map[string]interface{}{
    												"rule":    "self.startsWith('k8s')",
    												"message": "strings must have k8s prefix",
    											},
    											map[string]interface{}{
    												"rule":    "len(self) % 2 == 1",
    												"message": "strings must have odd length",
    											},
    										},
    									},
    								},
    							},
    						},
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{117, "ECANCELED", "asynchronous I/O cancelled"},
    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    	return &opensslOutputSink{make(chan struct{}), make(chan struct{}), nil, nil}
    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    	case _Semi:
    		return "semicolon or newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			if tc.shouldFail && err == nil {
    				t.Error("expecting failure, but err is nil")
    			}
    			if tc.initAttachErr != nil && err != nil {
    				if tc.initAttachErr.Message != err.Error() {
    					t.Errorf("expecting error [%v], got [%v]", tc.initAttachErr.Message, err.Error())
    				}
    			}
    			if err == nil && retID != attachID {
    				t.Errorf("attacher.WaitForAttach not returning attachment ID")
    			}
    			wg.Wait()
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    		t.Fatalf("expected violation %q, but got: %v", v, cond.Message)
    	}
    	if v := "spec.preserveUnknownFields: Invalid value: true: must be false"; !strings.Contains(cond.Message, v) {
    		t.Fatalf("expected violation %q, but got: %v", v, cond.Message)
    	}
    
    	t.Log("fix schema")
    	for retry := 0; retry < 5; retry++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  10. src/syscall/zerrors_netbsd_amd64.go

    	80: "authentication error",
    	81: "need authenticator",
    	82: "identifier removed",
    	83: "no message of desired type",
    	84: "value too large to be stored in data type",
    	85: "illegal byte sequence",
    	86: "not supported",
    	87: "operation Canceled",
    	88: "bad or Corrupt message",
    	89: "no message available",
    	90: "no STREAM resources",
    	91: "not a STREAM",
    	92: "STREAM ioctl timeout",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
Back to top