Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for badpod (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/badword/admin_badword.jsp */
        HtmlNext path_AdminBadword_AdminBadwordJsp = new HtmlNext("/admin/badword/admin_badword.jsp");
    
        /** The path of the HTML: /admin/badword/admin_badword_details.jsp */
        HtmlNext path_AdminBadword_AdminBadwordDetailsJsp = new HtmlNext("/admin/badword/admin_badword_details.jsp");
    
        /** The path of the HTML: /admin/badword/admin_badword_download.jsp */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy.go

    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    
    	*newPod = *dropNonEphemeralContainerUpdates(newPod, oldPod)
    	podutil.DropDisabledPodFields(newPod, oldPod)
    }
    
    func (podEphemeralContainersStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/testing/fake_manager.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // FakeManager simulates a prober.Manager for testing.
    type FakeManager struct{}
    
    // Unused methods below.
    
    // AddPod simulates adding a Pod.
    func (FakeManager) AddPod(_ *v1.Pod) {}
    
    // RemovePod simulates removing a Pod.
    func (FakeManager) RemovePod(_ *v1.Pod) {}
    
    // Simulated stopping liveness and startup probes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/api/testdata/src/pkg/p3/p3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p3
    
    type ThirdBase struct{}
    
    func (tb *ThirdBase) GoodPlayer() (i, j, k int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 310 bytes
    - Viewed (0)
  5. pilot/pkg/controllers/untaint/nodeuntainter_test.go

    		})
    		s.nc.Create(node)
    	}
    }
    
    func (s *nodeTainterTestServer) addCniPod(t *testing.T, node string, markReady bool) {
    	s.addPod(t, node, markReady, cniPodLabels, systemNS)
    }
    
    func (s *nodeTainterTestServer) addPod(t *testing.T, node string, markReady bool, labels map[string]string, ns string) {
    	t.Helper()
    	ip := "1.2.3.4"
    	name := "istio-cni-" + node
    	if ns == "" {
    		ns = systemNS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

            given:
            badCode()
    
            and:
            buildFile << "compileScala.options.failOnError = false\n"
    
            expect:
            succeeds 'compileScala'
        }
    
        def "compile bad scala code do not fail the build when scalaCompileOptions.failOnError is false"() {
            given:
            badCode()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginDependenciesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class CheckstylePluginDependenciesIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            writeBuildFile()
            writeConfigFile()
            badCode()
        }
    
        def "allows configuring tool dependencies explicitly"() {
            //Language has to be English, because the error message is localised
            defaultLocale('en')
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/sigstack.go

    }
    
    func SigStack() {
    	C.DoThread(0)
    	C.DoThread(1)
    	C.DoThread(0)
    	C.DoThread(1)
    	println("OK")
    }
    
    var BadPtr *int
    
    //export SigStackCallback
    func SigStackCallback() {
    	// Cause the Go signal handler to run.
    	defer func() { recover() }()
    	*BadPtr = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. pkg/quota/v1/install/update_filter.go

    	return func(resource schema.GroupVersionResource, oldObj, newObj interface{}) bool {
    		switch resource.GroupResource() {
    		case schema.GroupResource{Resource: "pods"}:
    			oldPod := oldObj.(*v1.Pod)
    			newPod := newObj.(*v1.Pod)
    			return core.QuotaV1Pod(oldPod, clock.RealClock{}) && !core.QuotaV1Pod(newPod, clock.RealClock{})
    		case schema.GroupResource{Resource: "services"}:
    			oldService := oldObj.(*v1.Service)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

        }
    
        def 'incremental analysis is transparent'() {
            given:
            Assume.assumeTrue(supportIncrementalAnalysis())
            goodCode()
            badCode()
    
            when:
            fails('pmdMain')
    
            then:
            file("build/reports/pmd/main.xml").assertContents(Matchers.containsText('BadClass'))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top