Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 155 for Messages (0.12 sec)

  1. 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)
  2. 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)
  3. manifests/charts/istiod-remote/values.yaml

          enableAnalysis: false
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.status.yaml.golden

      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/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)
  10. 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)
Back to top