Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for badpod (0.46 sec)

  1. pkg/controller/volume/attachdetach/util/util.go

    			continue
    		}
    
    		uniquePodName := util.GetUniquePodName(pod)
    		if addVolumes {
    			// Add volume to desired state of world
    			_, err := desiredStateOfWorld.AddPod(
    				uniquePodName, pod, volumeSpec, nodeName)
    			if err != nil {
    				logger.V(10).Info("Failed to add volume for pod to desiredStateOfWorld", "pod", klog.KObj(pod), "volumeName", podVolume.Name, "err", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/covdata/dump.go

    		fmt.Printf(" *\t%s\n", strings.Join(args, " "))
    		fmt.Printf(" */\n")
    	}
    }
    
    func (d *dstate) BeginPod(p pods.Pod) {
    	d.mm = make(map[pkfunc]decodecounter.FuncPayload)
    }
    
    func (d *dstate) EndPod(p pods.Pod) {
    	if d.cmd == debugDumpMode {
    		d.cm.ResetModeAndGranularity()
    	}
    }
    
    func (d *dstate) BeginCounterDataFile(cdf string, cdr *decodecounter.CounterDataReader, dirIdx int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/gateway-custom-ingressgateway-badport.yaml"},
    		analyzer:   &gateway.IngressGatewayPortAnalyzer{},
    		expected: []message{
    			{msg.GatewayPortNotDefinedOnService, "Gateway httpbin-gateway"},
    		},
    	},
    	{
    		name:       "gatewayCustomIngressGatewayBadPortWithoutTarget",
    		inputFiles: []string{"testdata/gateway-custom-ingressgateway-badport-notarget.yaml"},
    		analyzer:   &gateway.IngressGatewayPortAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    // counter data file as well.
    //
    // Case 3: if "-pcombine" is in effect, we don't write anything at
    // this point (all writes will happen at the end of the run).
    func (mm *metaMerge) endPod(pcombine bool) {
    	if pcombine {
    		// Just clear out the pod data, we'll do all the
    		// heavy lifting at the end.
    		mm.pod = nil
    		return
    	}
    
    	finalHash := mm.pod.fileHash
    	if matchpkg != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction_test.go

    			},
    		},
    		{
    			name:       "invalid uid",
    			initialPod: true,
    			makeDeleteOptions: func(pod *api.Pod) *metav1.DeleteOptions {
    				badUID := pod.UID + "1"
    				return &metav1.DeleteOptions{Preconditions: &metav1.Preconditions{UID: &badUID}}
    			},
    			expectErr: "The object might have been deleted and then recreated",
    		},
    		{
    			name:       "valid resourceVersion",
    			initialPod: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    	curPod := cur.(*v1.Pod)
    	oldPod := old.(*v1.Pod)
    	if curPod.ResourceVersion == oldPod.ResourceVersion {
    		// Periodic resync will send update events for all known pods.
    		// Two different versions of the same pod will always have different RVs.
    		return
    	}
    
    	labelChanged := !reflect.DeepEqual(curPod.Labels, oldPod.Labels)
    	if curPod.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/regexp/exec_test.go

    	//     codes (with REG_ omitted) or the match array, a list of (m,n)
    	//     entries with m and n being first and last+1 positions in the
    	//     field 3 string, or NULL if REG_NOSUB is in effect and success
    	//     is expected. BADPAT is acceptable in place of any regcomp(3)
    	//     error code. The match[] array is initialized to (-2,-2) before
    	//     each test. All array elements from 0 to nmatch-1 must be specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types_test.go

    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	ni := fakeNodeInfo()
    	gen := ni.Generation
    	for _, pod := range pods {
    		ni.AddPod(pod)
    		if ni.Generation <= gen {
    			t.Errorf("Generation is not incremented. Prev: %v, current: %v", gen, ni.Generation)
    		}
    		gen = ni.Generation
    	}
    
    	expected.Generation = ni.Generation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    		port    int
    		ok      bool
    	}
    	var tests = []test{
    		{"tcp", "0", 0, true},
    		{"udp", "0", 0, true},
    		{"udp", "domain", 53, true},
    
    		{"--badnet--", "zzz", 0, false},
    		{"tcp", "--badport--", 0, false},
    		{"tcp", "-1", 0, false},
    		{"tcp", "65536", 0, false},
    		{"udp", "-1", 0, false},
    		{"udp", "65536", 0, false},
    		{"tcp", "123456789", 0, false},
    
    		// Issue 13610: LookupPort("tcp", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top