Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for Messages (0.07 sec)

  1. pkg/test/echo/server/forwarder/udp.go

    	}
    
    	// Make sure the client writes something to the buffer
    	message := "HelloWorld"
    	if cfg.Request.Message != "" {
    		message = cfg.Request.Message
    	}
    
    	if _, err := conn.Write([]byte(message + "\n")); err != nil {
    		fwLog.Warnf("UDP write failed: %v", err)
    		return msgBuilder.String(), err
    	}
    	var resBuffer bytes.Buffer
    	buf := make([]byte, 1024+len(message))
    	n, err := conn.Read(buf)
    	if err != nil && err != io.EOF {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/state_test.go

    					{
    						Type:    "PassedValidation",
    						Status:  "True",
    						Message: "just a test, here",
    					},
    					{
    						Type:    "Reconciled",
    						Status:  "True",
    						Message: "2/2 proxies up to date.",
    					},
    				},
    				ValidationMessages: nil,
    			},
    		}, {
    			name: "Reconcile for message difference",
    			args: args{
    				current: &config.Config{Status: statusStillPropagating},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 22:47:47 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.proto

      // take place.
      // Groups are OR-ed.
      repeated Group groups = 5;
    }
    
    message Group {
      // Rules are OR-ed (e.g. ANY rule can match)
      // This is a generic form of the authz policy's to, from and when
      repeated Rules rules = 1;
    }
    
    message Rules {
      // The logical behavior between the matches (if there are more than one)
    //  MatchBehavior match_behavior = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/util/gogoprotomarshal/protomarshal.go

    	"github.com/gogo/protobuf/proto"  // nolint: depguard
    
    	"istio.io/istio/pkg/log"
    )
    
    // ApplyJSON unmarshals a JSON string into a proto message. Unknown fields are allowed
    func ApplyJSON(js string, pb proto.Message) error {
    	reader := strings.NewReader(js)
    	m := jsonpb.Unmarshaler{}
    	if err := m.Unmarshal(reader, pb); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of Roles
      repeated Role items = 2;
    }
    
    // RoleRef contains information that points to the role being used
    message RoleRef {
      // APIGroup is the group for the resource being referenced
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cni/pkg/repair/repair_test_helpers.go

    			Waiting: &corev1.ContainerStateWaiting{
    				Reason:  "CrashLoopBackOff",
    				Message: "Back-off 5m0s restarting failed blah blah blah",
    			},
    		},
    		LastTerminationState: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
      // An IPAddress must reference a parent object.
      // +required
      optional ParentReference parentRef = 1;
    }
    
    // ParentReference describes a reference to a parent object.
    message ParentReference {
      // Group is the group of the object being referenced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/multicluster/service.go

    			for _, r := range clusterServices {
    				if r != nil {
    					serviceInstance = r
    					break
    				}
    			}
    			message := msg.NewMultiClusterInconsistentService(serviceInstance, fullname.Name.String(),
    				fullname.Namespace.String(), inconsistents, errors)
    
    			c.Report(gvk.Service, message)
    		}
    	}
    }
    
    func findInconsistencies(services map[cluster.ID]*resource.Instance) (clusters []string, errors string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. cni/pkg/log/uds_test.go

    			cniLog{
    				Level:     "info",
    				Time:      *wantT,
    				Msg:       "my message",
    				Arbitrary: nil,
    			},
    		},
    		{
    			"with keys",
    			`{"level":"info","time":"2020-01-01T00:00:00.356374Z","msg":"my message","key":"string value","bar":2}`,
    			cniLog{
    				Level: "info",
    				Time:  *wantT,
    				Msg:   "my message",
    				Arbitrary: map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/schema/validation_test.go

    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m1,
    				},
    			},
    		}
    		a.Analyze(ctx)
    		g.Expect(ctx.Reports).To(BeEmpty())
    	})
    
    	t.Run("SingleError", func(t *testing.T) {
    		g := NewWithT(t)
    
    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m2,
    					Origin:  fakeOrigin{},
    				},
    			},
    		}
    		a.Analyze(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top