Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for badpod (0.09 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    				// 13,14: process pending delete of bad child
    				processAttemptToDelete(1),
    				assertState(state{
    					clientActions: []string{
    						"get /v1, Resource=pods ns=ns1 name=badpod",    // lookup of child pre-delete
    						"delete /v1, Resource=pods ns=ns1 name=badpod", // delete of bad child (absence of bad parent is cached)
    					},
    					graphNodes: []*node{
    						makeNode(goodChildPod, withOwners(deployment1apps)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	writeTestFile(t, fmt.Sprintf("%s/pod.json", tmpDir), aPod)
    	writeTestFile(t, fmt.Sprintf("%s/badpod.json", tmpDir), aPodBadAnnotations)
    
    	tests := []struct {
    		name          string
    		file          string
    		expectedError string
    	}{
    		{
    			name:          "pod",
    			file:          "pod.json",
    			expectedError: "",
    		},
    		{
    			name:          "badpod",
    			file:          "badpod.json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/BadWord.java

     */
    package org.codelibs.fess.es.config.exentity;
    
    import org.codelibs.fess.es.config.bsentity.BsBadWord;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class BadWord extends BsBadWord {
    
        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/badPom.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 346 bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph_populator.go

    }
    
    func (g *graphPopulator) addPod(obj interface{}) {
    	g.updatePod(nil, obj)
    }
    
    func (g *graphPopulator) updatePod(oldObj, obj interface{}) {
    	pod := obj.(*corev1.Pod)
    	if len(pod.Spec.NodeName) == 0 {
    		// No node assigned
    		klog.V(5).Infof("updatePod %s/%s, no node", pod.Namespace, pod.Name)
    		return
    	}
    	if oldPod, ok := oldObj.(*corev1.Pod); ok && oldPod != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            details.moduleId >> barMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(barMod, '1.0')
            action.execute(details)
    
            then:
            1 * details.notFound()
    
            when:
            details.moduleId >> bazMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(bazMod, '1.0')
            action.execute(details)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    			t.Fatalf("assumePod failed: %v", err)
    		}
    	}
    	for _, podToAdd := range test.podsToAdd {
    		if err := cache.AddPod(logger, podToAdd); err != nil {
    			t.Fatalf("AddPod failed: %v", err)
    		}
    		// pod already in added state
    		if err := cache.AddPod(logger, podToAdd); err == nil {
    			t.Error("expected error, no error found")
    		}
    	}
    	cache.cleanupAssumedPods(logger, now.Add(2*ttl))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/badgo.txt

    go get example.net/badgo@v1.0.0
    go get example.net/badgo@v1.1.0
    go get example.net/badgo@v1.2.0
    go get example.net/badgo@v1.3.0
    go get example.net/badgo@v1.4.0
    go get example.net/badgo@v1.5.0
    ! go get example.net/badgo@v1.6.0
    stderr 'invalid go version .X.Y.: must match format 1.23'
    
    -- go.mod --
    module m
    
    replace (
    	example.net/badgo v1.0.0 => ./v1.0.0
    	example.net/badgo v1.1.0 => ./v1.1.0
    	example.net/badgo v1.2.0 => ./v1.2.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 15:33:24 UTC 2021
    - 985 bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/interface.go

    	ForgetPod(logger klog.Logger, pod *v1.Pod) error
    
    	// AddPod either confirms a pod if it's assumed, or adds it back if it's expired.
    	// If added back, the pod's information would be added again.
    	AddPod(logger klog.Logger, pod *v1.Pod) error
    
    	// UpdatePod removes oldPod's information and adds newPod's information.
    	UpdatePod(logger klog.Logger, oldPod, newPod *v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_load_badmod.txt

    cp go.mod.bad go.mod
    ! go list -m -mod=mod all
    stderr 'unknown directive: hello'
    
    -- go.mod --
    module m
    require rsc.io/badmod v1.0.0
    -- go.mod.bad --
    module m
    hello world
    -- go.mod.usesub --
    module m
    require rsc.io/badmod v1.0.0
    replace rsc.io/badmod v1.0.0 => ./sub
    -- sub/go.mod --
    module sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 524 bytes
    - Viewed (0)
Back to top