Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for Messages (0.14 sec)

  1. istioctl/pkg/writer/compare/comparator.go

    		return err
    	}
    	return c.RouteDiff()
    }
    
    // nonstrictResolver is an AnyResolver that ignores unknown proto messages
    type nonstrictResolver struct{}
    
    var envoyResolver nonstrictResolver
    
    func (m *nonstrictResolver) Resolve(typeURL string) (legacyproto.Message, error) {
    	// See https://github.com/golang/protobuf/issues/747#issuecomment-437463120
    	mname := typeURL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/kstatus/helper.go

    		return StatusTrue
    	default:
    		return StatusFalse
    	}
    }
    
    // WrappedStatus provides a wrapper around a status message that keeps track of whether or not any
    // changes have been made. This allows users to declarative write status, without worrying about
    // tracking changes. When read to commit (typically to Kubernetes), any messages with Dirty=false can
    // be discarded.
    type WrappedStatus struct {
    	// Status is the object that is wrapped.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. cni/pkg/plugin/cnieventclient.go

    	"istio.io/istio/cni/pkg/nodeagent"
    )
    
    // newCNIClient is a unit test override variable for mocking.
    var newCNIClient = buildClient
    
    // An udsCore write entries to an UDS server with HTTP Post. Log messages will be encoded into a JSON array.
    type CNIEventClient struct {
    	client *http.Client
    	url    string
    }
    
    func buildClient(address, path string) CNIEventClient {
    	c := &http.Client{
    		Transport: &http.Transport{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/test/framework/errors/deprecations.go

    			if IsDeprecatedError(e) {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    func (de *DeprecatedError) Error() string {
    	return de.msg
    }
    
    // FindDeprecatedMessagesInEnvoyLog looks for deprecated messages in the `logs` parameter. If found, it will return
    // a DeprecatedError. Use `extraInfo` to pass additional info, like pod namespace/name, etc.
    func FindDeprecatedMessagesInEnvoyLog(logs, extraInfo string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/events/v1beta1/generated.proto

    // Events have a limited retention time and triggers and messages may evolve
    // with time.  Event consumers should not rely on the timing of an event
    // with a given Reason reflecting a consistent underlying trigger, or the
    // continued existence of events with that Reason.  Events should be
    // treated as informative, best-effort, supplemental data.
    message Event {
      // Standard object's metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/events/v1/generated.proto

    // Events have a limited retention time and triggers and messages may evolve
    // with time.  Event consumers should not rely on the timing of an event
    // with a given Reason reflecting a consistent underlying trigger, or the
    // continued existence of events with that Reason.  Events should be
    // treated as informative, best-effort, supplemental data.
    message Event {
      // Standard object's metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/model/xds.go

    	WorkloadAuthorizationType = APITypePrefix + "istio.security.Authorization"
    )
    
    // GetShortType returns an abbreviated form of a type, useful for logging or human friendly messages
    func GetShortType(typeURL string) string {
    	switch typeURL {
    	case ClusterType:
    		return "CDS"
    	case ListenerType:
    		return "LDS"
    	case RouteType:
    		return "RDS"
    	case EndpointType:
    		return "EDS"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/zdsapi/zds.proto

    - from now on, ztunnel will expect only AddWorkload and DelWorkload messages.
    */
    
    // Sent from CNI to ztunnel
    message WorkloadRequest {
      oneof payload {
        AddWorkload add = 1;
        KeepWorkload keep = 5;
        DelWorkload del = 2;
        SnapshotSent snapshot_sent = 3;
      }
    }
    
    // Sent from ztunnel to CNI
    message WorkloadResponse {
      oneof payload {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. operator/pkg/controller/istiocontrolplane/errdict.go

    )
    
    const (
    	LikelyCauseFirstPrefix  = "The likely cause is "
    	LikelyCauseSecondPrefix = "Another possible cause could be "
    )
    
    // General boilerplate.
    const (
    	// Boilerplate messages applicable all over the code base.
    
    	// Action
    	actionIfErrPersistsCheckBugList            = "If this error persists, " + actionCheckBugList
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    			}
    		}
    
    		// If AuthzPolicy is mesh-wide and selectorless,
    		// no need to keep the analysis
    		return
    	}
    
    	// If the AuthzPolicy is namespace-wide and there are present Pods,
    	// no messages should be triggered.
    	if ap.GetSelector() == nil {
    		if len(podLabelsMap[apNs]) == 0 {
    			c.Report(gvk.AuthorizationPolicy, msg.NewNoMatchingWorkloadsFound(r, ""))
    		}
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top