Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for Messages (0.11 sec)

  1. pkg/security/security.go

    }
    
    // authenticationManager orchestrates all authenticators to perform authentication.
    type authenticationManager struct {
    	Authenticators []Authenticator
    	// authFailMsgs contains list of messages that authenticator wants to record - mainly used for logging.
    	authFailMsgs []string
    }
    
    // Authenticate loops through all the configured Authenticators and returns if one of the authenticator succeeds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. istioctl/pkg/multixds/gather.go

    	return fmt.Sprintf("no running Istio pods in %q", c.Namespace)
    }
    
    var _ error = ControlPlaneNotFoundError{}
    
    type Options struct {
    	// MessageWriter is a writer for displaying messages to users.
    	MessageWriter io.Writer
    
    	// XdsViaAgents accesses Istiod via the tap service of each agent.
    	// This is only used in `proxy-status` command.
    	XdsViaAgents bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/workloadapi/workload.pb.go

    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. 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)
Back to top