Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for userG (0.3 sec)

  1. pilot/pkg/model/telemetry_logging.go

    	// We need to propagate these as part of access log service stream
    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		if cStatus.User == nil {
    			return nil
    		}
    
    		user := &v1.ContainerUser{}
    		if cStatus.User.Linux != nil {
    			user.Linux = &v1.LinuxContainerUser{
    				UID:                cStatus.User.Linux.UID,
    				GID:                cStatus.User.Linux.GID,
    				SupplementalGroups: cStatus.User.Linux.SupplementalGroups,
    			}
    		}
    
    		return user
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	if errCode != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
    		return
    	}
    
    	if len(fanOutEntries) > 0 {
    		// Once signature is validated, check if the user has
    		// explicit permissions for the user.
    		if !globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    			Action:          policy.PutObjectFanOutAction,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ```Python
    def get_current_user(token: str):
        # authenticate user
        return User()
    
    
    @app.get("/items/")
    def read_items(user: User = Depends(get_current_user)):
        ...
    
    
    @app.post("/items/")
    def create_item(*, user: User = Depends(get_current_user), item: Item):
        ...
    
    
    @app.get("/items/{item_id}")
    def read_item(*, user: User = Depends(get_current_user), item_id: int):
        ...
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    //	which users can add to the Gateway.
    func IsManaged(gw *k8s.GatewaySpec) bool {
    	if len(gw.Addresses) == 0 {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    								"x_forwarded_for":                {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-FORWARDED-FOR)%"}},
    								"user_agent":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(USER-AGENT)%"}},
    								"request_id":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-REQUEST-ID)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    // the SSL connection. They would inspect the SNI header and forward to the appropriate upstream as opaque TCP.
    //
    // Within HTTPS servers terminating TLS, user could setup multiple servers in the gateway. each server could have
    // one or more hosts but have different TLS certificates. In this case, we end up having separate filter chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		if inuserns.RunningInUserNS() {
    			if utilfeature.DefaultFeatureGate.Enabled(features.KubeletInUserNamespace) {
    				// oomwatcher.NewWatcher returns "open /dev/kmsg: operation not permitted" error,
    				// when running in a user namespace with sysctl value `kernel.dmesg_restrict=1`.
    				klog.V(2).InfoS("Failed to create an oomWatcher (running in UserNS, ignoring)", "err", err)
    				oomWatcher = nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    func (p podsByUID) Less(i, j int) bool { return p[i].UID < p[j].UID }
    
    // createAndStartFakeRemoteRuntime creates and starts fakeremote.RemoteRuntime.
    // It returns the RemoteRuntime, endpoint on success.
    // Users should call fakeRuntime.Stop() to cleanup the server.
    func createAndStartFakeRemoteRuntime(t *testing.T) (*fakeremote.RemoteRuntime, string) {
    	endpoint, err := fakeremote.GenerateEndpoint()
    	require.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top