Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for badpod (0.32 sec)

  1. src/cmd/api/testdata/src/pkg/p3/golden.txt

    pkg p3, func BadHop(int, int, int) (bool, bool, *ThirdBase, *ThirdBase, error)
    pkg p3, method (*ThirdBase) GoodPlayer() (int, int, int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 29 00:45:45 UTC 2013
    - 166 bytes
    - Viewed (0)
  2. src/net/http/httptest/recorder_test.go

    	badCodes := []int{
    		-100, 0, 99, 1000, 20000,
    	}
    	for _, badCode := range badCodes {
    		badCode := badCode
    		t.Run(fmt.Sprintf("Code=%d", badCode), func(t *testing.T) {
    			defer func() {
    				if r := recover(); r == nil {
    					t.Fatal("Expected a panic")
    				}
    			}()
    
    			handler := func(rw http.ResponseWriter, _ *http.Request) {
    				rw.WriteHeader(badCode)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 23:17:38 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

                tasks.withType(Pmd) {
                    // clear the classpath to avoid file locking issues on PMD version < 5.5.1
                    classpath = files()
                }
            """
            badCode()
        }
    
        def "allows configuring tool dependencies explicitly"() {
            def testDependency = 'net.sourceforge.pmd:pmd:5.1.1'
            expect: //defaults exist and can be inspected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/badword/SearchForm.java

     * 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 org.codelibs.fess.app.web.admin.badword;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String id;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 778 bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            // file("build/reports/checkstyle/main.html").assertContents(containsLine(containsString("bad.properties")))
        }
    
        def "analyze bad code"() {
            defaultLanguage('en')
            badCode()
    
            expect:
            fails("check")
            failure.assertHasDescription("Execution failed for task ':checkstyleMain'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/priority/admission.go

    		if pod.Spec.Priority == nil && oldPod.Spec.Priority != nil {
    			pod.Spec.Priority = oldPod.Spec.Priority
    		}
    		if pod.Spec.PreemptionPolicy == nil && oldPod.Spec.PreemptionPolicy != nil {
    			pod.Spec.PreemptionPolicy = oldPod.Spec.PreemptionPolicy
    		}
    		return nil
    	}
    
    	if operation == admission.Create {
    		var priority int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				fakePodManager.AddPod(existingPod)
    				dswp.findAndAddNewPods()
    			}
    
    			newContainer := container
    			newContainer.SecurityContext.SELinuxOptions = tc.newContainerSELinuxOpts
    			newPod := createPodWithVolume("dswp-test-pod", "dswp-test-volume-name", "file-bound", []v1.Container{newContainer})
    
    			// Act - add the new Pod
    			fakePodManager.AddPod(newPod)
    			dswp.findAndAddNewPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager_test.go

    	defer cleanup(t, m)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with no probes should be a no-op.
    	m.AddPod(&noProbePod)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with probes.
    	m.AddPod(&probePod)
    	probePaths := []probeKey{
    		{"probe_pod", "readiness", readiness},
    		{"probe_pod", "liveness", liveness},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/graph_test.go

    		"configmap:ns/cm3":      {"pod:ns/pod2", "pod:ns/pod3"},
    		"serviceAccount:ns/sa1": {"pod:ns/pod2", "pod:ns/pod3"},
    	})
    	expectIndex(map[string][]string{})
    
    	// add two to get above the threshold
    	addPod(1, 1)
    	addPod(4, 1)
    	expectGraph(map[string][]string{
    		"node:node1":            {},
    		"node:node2":            {},
    		"node:node3":            {},
    		"pod:ns/pod1":           {"node:node1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    Leonardo Sarra <******@****.***> 1717490886 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
Back to top