Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 598 for Managed (0.17 sec)

  1. pilot/pkg/config/kube/gateway/conversion_test.go

    		r               GatewayResources
    		kgw             *k8s.GatewaySpec
    		obj             config.Config
    		gatewayServices []string
    		err             *ConfigError
    	}{
    		{
    			name: "managed gateway",
    			r:    GatewayResources{Domain: "cluster.local"},
    			kgw: &k8s.GatewaySpec{
    				GatewayClassName: "istio",
    			},
    			obj: config.Config{
    				Meta: config.Meta{
    					Name:      "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[directory_layout]]
    = Gradle-managed Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#dir:gradle_user_home>> and the <<#dir:project_root>>.
    
    image::author-gradle-2.png[]
    
    [[dir:gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    				// Set the capacity of the removed resource to 0 instead of
    				// removing the resource from the node status. This is to indicate
    				// that the resource is managed by device plugin and had been
    				// registered before.
    				//
    				// This is required to differentiate the device plugin managed
    				// resources and the cluster-level resources, which are absent in
    				// node status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/kubelet/logs/container_log_manager.go

    	// tmpSuffix is the suffix for temporary file.
    	tmpSuffix = ".tmp"
    )
    
    // ContainerLogManager manages lifecycle of all container logs.
    //
    // Implementation is thread-safe.
    type ContainerLogManager interface {
    	// TODO(random-liu): Add RotateLogs function and call it under disk pressure.
    	// Start container log manager.
    	Start()
    	// Clean removes all logs of specified container.
    	Clean(ctx context.Context, containerID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/types.go

    	// AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    	// +optional
    	AggregationRule *AggregationRule `json:"aggregationRule,omitempty" protobuf:"bytes,3,opt,name=aggregationRule"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/volume/projected/projected.go

    	opts   *volume.VolumeOptions
    }
    
    var _ volume.Mounter = &projectedVolumeMounter{}
    
    func (sv *projectedVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    
    }
    
    func (s *projectedVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return s.SetUpAt(s.GetPath(), mounterArgs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	"k8s.io/kubernetes/third_party/forked/golang/expansion"
    	utilnet "k8s.io/utils/net"
    )
    
    const (
    	managedHostsHeader                = "# Kubernetes-managed hosts file.\n"
    	managedHostsHeaderWithHostNetwork = "# Kubernetes-managed hosts file (host network).\n"
    )
    
    // Container state reason list
    const (
    	PodInitializing   = "PodInitializing"
    	ContainerCreating = "ContainerCreating"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    		return gs
    	})
    }
    
    // IsManaged checks if a Gateway is managed (ie we create the Deployment and Service) or unmanaged.
    // This is based on the address field of the spec. If address is set with a Hostname type, it should point to an existing
    // Service that handles the gateway traffic. If it is not set, or refers to only a single IP, we will consider it managed and provision the Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	sweepgen uint32 // sweep generation, see comment in mspan; written during STW
    
    	// allspans is a slice of all mspans ever created. Each mspan
    	// appears exactly once.
    	//
    	// The memory for allspans is manually managed and can be
    	// reallocated and move as the heap grows.
    	//
    	// In general, allspans is protected by mheap_.lock, which
    	// prevents concurrent access as well as freeing the backing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		}
    	}
    
    	return wc, nil
    }
    
    // getKubeletSandboxes lists all (or just the running) sandboxes managed by kubelet.
    func (m *kubeGenericRuntimeManager) getKubeletSandboxes(ctx context.Context, all bool) ([]*runtimeapi.PodSandbox, error) {
    	var filter *runtimeapi.PodSandboxFilter
    	if !all {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top