Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for message2 (0.16 sec)

  1. staging/src/k8s.io/api/authorization/v1/generated.pb.go

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

    // and updates the pod to the failed phase in the status manager.
    func (kl *Kubelet) rejectPod(pod *v1.Pod, reason, message string) {
    	kl.recorder.Eventf(pod, v1.EventTypeWarning, reason, message)
    	kl.statusManager.SetPodStatus(pod, v1.PodStatus{
    		Phase:   v1.PodFailed,
    		Reason:  reason,
    		Message: "Pod was rejected: " + message})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class DeprecationErrorImpl(
        override val reference: KaSymbol,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.DeprecationError
    
    internal class DeprecationImpl(
        override val reference: KaSymbol,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            .build(),
        )
        val response = getResponse(newRequest("/"))
        assertThat(response.protocol).isEqualTo(Protocol.HTTP_1_1)
      }
    
      /** For example, empty Protobuf RPC messages end up as a zero-length POST.  */
      @Test
      fun zeroLengthPost() {
        zeroLengthPayload("POST")
      }
    
      @Test
      fun zeroLengthPost_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

              },
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    		}
    	}
    }
    
    func TestValidateGateway(t *testing.T) {
    	tests := []struct {
    		name    string
    		in      proto.Message
    		out     string
    		warning string
    	}{
    		{"empty", &networking.Gateway{}, "server", ""},
    		{"invalid message", &networking.Server{}, "cannot cast", ""},
    		{
    			"happy domain",
    			&networking.Gateway{
    				Servers: []*networking.Server{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    				Phase: v1.PodSucceeded,
    				ContainerStatuses: []v1.ContainerStatus{
    					runningState("containerA"),
    					runningState("containerB"),
    				},
    				// Reason and message should be preserved
    				Reason:  "Test",
    				Message: "test",
    			},
    			expected: v1.PodStatus{
    				Phase:    v1.PodSucceeded,
    				HostIP:   "127.0.0.1",
    				HostIPs:  []v1.HostIP{{IP: "127.0.0.1"}, {IP: "::1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. fastapi/routing.py

                                else:
                                    message = email.message.Message()
                                    message["content-type"] = content_type_value
                                    if message.get_content_maintype() == "application":
                                        subtype = message.get_content_subtype()
                                        if subtype == "json" or subtype.endswith("+json"):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/logger/message/log"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/secure-io/sio-go"
    	"github.com/zeebo/xxh3"
    )
    
    const (
    	maxEConfigJSONSize        = 262272
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top