Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for Messages (0.15 sec)

  1. pilot/pkg/config/file/store.go

    		}
    	}
    
    	// Cannot create new instance. This occurs because while newer types do not implement proto.Message,
    	// this legacy code only supports proto.Messages.
    	// Note: while NewInstance can be slightly modified to not return error here, the rest of the code
    	// still requires a proto.Message so it won't work without completely refactoring galley/
    	_, e := schema.NewInstance()
    	cannotHandleProto := e != nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate_value.go

    		// set component enablement
    		if err := tpath.WriteNode(root, outCP, enabled); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // WarningForGatewayK8SSettings creates deprecated warning messages
    // when user try to set kubernetes settings for gateways via values api.
    func (t *ReverseTranslator) WarningForGatewayK8SSettings(valuesOverlay string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/proxyconfig.go

    	logCmd.PersistentFlags().StringVarP(&labelSelector, "selector", "l", "", "Label selector")
    	logCmd.PersistentFlags().StringVar(&loggerLevelString, "level", loggerLevelString,
    		fmt.Sprintf("Comma-separated minimum per-logger level of messages to output, in the form of"+
    			" [<logger>:]<level>,[<logger>:]<level>,... or <level> to change all active loggers, "+
    			"where logger components can be listed by running \"istioctl proxy-config log <pod-name[.namespace]>\""+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// TODO Check naming and redirection logic
    	if (err != nil || len(stderr.String()) != 0) && !ignoreErrors {
    		stderrStr := stderr.String()
    
    		// Transform to xtables-specific error messages with more useful and actionable hints.
    		if err != nil {
    			stderrStr = transformToXTablesErrorMessage(stderrStr, err)
    		}
    
    		log.Errorf("Command error output: %v", stderrStr)
    	}
    
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/queue"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var scope = log.RegisterScope("kube", "Kubernetes client messages")
    
    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	cmd.PersistentFlags().StringVar(&loggerLevelString, "level", loggerLevelString,
    		fmt.Sprintf("Comma-separated minimum per-logger level of messages to output, in the form of"+
    			" [<logger>:]<level>,[<logger>:]<level>,... or <level> to change all active loggers, "+
    			"where logger components can be listed by running \"istioctl ztunnel-config log <pod-name[.namespace]>\""+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conditions.go

    	Reason  ParentErrorReason
    	Message string
    }
    
    // ConfigError represents an invalid configuration that will be reported back to the user.
    type ConfigError struct {
    	Reason  ConfigErrorReason
    	Message string
    }
    
    type condition struct {
    	// reason defines the reason to report on success. Ignored if error is set
    	reason string
    	// message defines the message to report on success. Ignored if error is set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/config/model.go

    }
    
    // Config is a configuration unit consisting of the type of configuration, the
    // key identifier that is unique per type, and the content represented as a
    // protobuf message.
    type Config struct {
    	Meta
    
    	// Spec holds the configuration object as a gogo protobuf message
    	Spec Spec
    
    	// Status holds long-running status.
    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo.pb.go

    }
    
    func (x *EchoRequest) GetMessage() string {
    	if x != nil {
    		return x.Message
    	}
    	return ""
    }
    
    type EchoResponse struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
    }
    
    func (x *EchoResponse) Reset() {
    	*x = EchoResponse{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top