Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for podgc (0.08 sec)

  1. pkg/controller/podgc/gc_controller.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package podgc
    
    import (
    	"context"
    	"sort"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package podgc
    
    import (
    	"context"
    	"encoding/json"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/core.go

    	return &ControllerDescriptor{
    		name:     names.PodGarbageCollectorController,
    		aliases:  []string{"podgc"},
    		initFunc: startPodGarbageCollectorController,
    	}
    }
    
    func startPodGarbageCollectorController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	go podgc.NewPodGC(
    		ctx,
    		controllerContext.ClientBuilder.ClientOrDie("pod-garbage-collector"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. pkg/controller/apis/config/v1alpha1/zz_generated.conversion.go

    	podautoscalerconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/podautoscaler/config/v1alpha1"
    	podgcconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/podgc/config/v1alpha1"
    	replicasetconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/replicaset/config/v1alpha1"
    	replicationconfigv1alpha1 "k8s.io/kubernetes/pkg/controller/replication/config/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. pkg/securitycontext/accessors.go

    }
    
    type podSecurityContextWrapper struct {
    	podSC *api.PodSecurityContext
    }
    
    func (w *podSecurityContextWrapper) PodSecurityContext() *api.PodSecurityContext {
    	return w.podSC
    }
    
    func (w *podSecurityContextWrapper) ensurePodSC() {
    	if w.podSC == nil {
    		w.podSC = &api.PodSecurityContext{}
    	}
    }
    
    func (w *podSecurityContextWrapper) HostNetwork() bool {
    	if w.podSC == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			podSc:           &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}},
    			containerSc:     &v1.SecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeRuntimeDefault}},
    			expectedProfile: runtimeDefaultProfile,
    		},
    		{
    			description:   "prioritise container field over pod field",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/securitycontext/accessors_test.go

    	testcases := []struct {
    		PodSC     *api.PodSecurityContext
    		SC        *api.SecurityContext
    		Effective *api.SecurityContext
    	}{
    		{
    			PodSC:     nil,
    			SC:        nil,
    			Effective: nil,
    		},
    		{
    			PodSC:     &api.PodSecurityContext{},
    			SC:        &api.SecurityContext{},
    			Effective: &api.SecurityContext{},
    		},
    		{
    			PodSC: &api.PodSecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  8. docs/pl/docs/help-fastapi.md

    ### Proponuj rozwiązania
    
    * Po zrozumieniu pytania możesz podać im możliwą **odpowiedź**.
    
    * W wielu przypadkach lepiej zrozumieć ich **podstawowy problem lub przypadek użycia**, ponieważ może istnieć lepszy sposób rozwiązania niż to, co próbują zrobić.
    
    ### Poproś o zamknięcie
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top