Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Detached (0.21 sec)

  1. pkg/kubelet/kubelet_test.go

    		time.Duration(50*time.Millisecond),
    		func() (bool, error) {
    			// Verify volumes detached
    			volumeAttached := volumeManager.VolumeIsAttached(volumeName)
    			return !volumeAttached, nil
    		},
    	)
    
    	if err != nil {
    		return fmt.Errorf(
    			"Expected volumes to be detached. But some volumes are still attached: %#v", attachedVolumes)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	for uid, val := range cgroupPods {
    		// if the pod is in the running set, its not a candidate for cleanup
    		if _, ok := possiblyRunningPods[uid]; ok {
    			continue
    		}
    
    		// If volumes have not been unmounted/detached, do not delete the cgroup
    		// so any memory backed volumes don't have their charges propagated to the
    		// parent croup.  If the volumes still exist, reduce the cpu shares for any
    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. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    				Port:     instancedWaypoint.DefaultBinding.Port,
    			}
    		} else if waypoint := fetchWaypointForWorkload(ctx, Waypoints, Namespaces, p.ObjectMeta); waypoint != nil {
    			// there is a workload-attached waypoint, point there with a GatewayAddress
    			targetWaypoint = waypoint
    		}
    
    		// enforce traversing waypoints
    		policies = append(policies, implicitWaypointPolicies(ctx, Waypoints, targetWaypoint, services)...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. CREDITS

        means Source Code Form to which the initial Contributor has attached
        the notice in Exhibit A, the Executable Form of such Source Code
        Form, and Modifications of such Source Code Form, in each case
        including portions thereof.
    
    1.5. "Incompatible With Secondary Licenses"
        means
    
        (a) that the initial Contributor has attached the notice described
            in Exhibit B to the Covered Software; or
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    			return f.Name
    		})
    	}()
    
    	formatters = append(formatters, accessLogTextFormatters(text)...)
    	if len(formatters) >= maxFormattersLength {
    		// all formatters are added, return if we have reached the limit
    		return formatters
    	}
    
    	names := sets.New[string]()
    	for _, f := range formatters {
    		names.Insert(f.Name)
    	}
    
    	for _, f := range accessLogJSONFormatters(labels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	return strings.Join(am.authFailMsgs, "; ")
    }
    
    func ExtractBearerToken(ctx context.Context) (string, error) {
    	md, ok := metadata.FromIncomingContext(ctx)
    	if !ok {
    		return "", fmt.Errorf("no metadata is attached")
    	}
    
    	authHeader, exists := md[authorizationMeta]
    	if !exists {
    		return "", fmt.Errorf("no HTTP authorization header exists")
    	}
    
    	for _, value := range authHeader {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    		Class:   cls,
    		Service: svc,
    	}, model.WasmPluginTypeHTTP)
    	// TODO: how to deal with ext-authz? It will be in the ordering twice
    	// TODO policies here will need to be different per-chain (service attached)
    	pre = append(pre, authzCustomBuilder.BuildHTTP(cls)...)
    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHN)
    	pre = append(pre, authnBuilder.BuildHTTP(cls)...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrPolicyAlreadyAttached: {
    		Code:           "XMinioPolicyAlreadyAttached",
    		Description:    "The specified policy is already attached.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrPolicyNotAttached: {
    		Code:           "XMinioPolicyNotAttached",
    		Description:    "The specified policy is not found.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    	hbone bool
    
    	// telemetryMetadata defines additional information about the chain for telemetry purposes.
    	telemetryMetadata telemetry.FilterChainMetadata
    
    	// proxies that accept service-attached policy should include the service for per-service chains
    	// so that those policies can be found
    	policyService *model.Service
    }
    
    // StatPrefix returns the stat prefix for the config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	// AttachedRoutes keeps track of how many routes are attached to this parent. This is tracked for status.
    	// Because this is mutate in the route generation, parentInfo must be passed as a pointer
    	AttachedRoutes int32
    	// ReportAttachedRoutes is a callback that should be triggered once all AttachedRoutes are computed, to
    	// actually store the attached route count in the status
    	ReportAttachedRoutes func()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top