Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 146 for badpod (0.26 sec)

  1. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<p><la:message key="labels.menu_elevate_word" /></p>
    						</a></li></c:if>
    
    					<c:if test="${fe:permission('admin-badword-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/badword/')}" class="nav-link <c:if test="${param.menuType=='badWord'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_bad_word" /></p>
    						</a></li></c:if>
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/framework/fake_extender.go

    	var potentialVictims []*v1.Pod
    
    	removePod := func(rp *v1.Pod) error {
    		return nodeInfoCopy.RemovePod(logger, rp)
    	}
    	addPod := func(ap *v1.Pod) {
    		nodeInfoCopy.AddPod(ap)
    	}
    	// As the first step, remove all the lower priority pods from the node and
    	// check if the given pod can be scheduled.
    	podPriority := corev1helpers.PodPriority(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/scale_test.go

    							Running: &v1.ContainerStateRunning{
    								StartedAt: metav1.Now(),
    							},
    						},
    						Started: utilpointer.Bool(true),
    					})
    				}
    				podManager.AddPod(&pod)
    				m.statusManager.SetPodStatus(&pod, pod.Status)
    				m.AddPod(&pod)
    			}
    			t.Logf("Adding %d pods with %d containers each in %v", numTestPods, numContainers, time.Since(now))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_ru.properties

    errors.failed_to_download_elevate_file=Failed to download the Elevate file.
    errors.failed_to_upload_elevate_file=Failed to upload the Elevate file.
    errors.failed_to_download_badword_file=Failed to download the Badword file.
    errors.failed_to_upload_badword_file=Failed to upload the Badword file.
    errors.failed_to_download_protwords_file=Failed to download the Protwords file.
    errors.failed_to_upload_protwords_file=Failed to upload the Protwords file.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            javaClassFile("compile/test/Person.class").exists()
        }
    
        def "compile bad code breaks the build and compilation error doesn't show link to help.gradle.org"() {
            given:
            badCode()
    
            when:
            fails("compileJava")
    
            then:
            output.contains(logStatement())
            failure.assertHasErrorOutput("';' expected")
            failure.assertNotOutput("https://help.gradle.org")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            buildFile << """
                apply plugin: "groovy"
                ${mavenCentralRepository()}
                compileGroovy.options.failOnError = false
            """.stripIndent()
    
            and:
            badCode()
    
            expect:
            succeeds 'compileGroovy'
        }
    
        def "compile bad groovy code do not fail the build when groovyOptions.failOnError is false"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    type DesiredStateOfWorld interface {
    	// AddNode adds the given node to the list of nodes managed by the attach/
    	// detach controller.
    	// If the node already exists this is a no-op.
    	AddNode(nodeName k8stypes.NodeName)
    
    	// AddPod adds the given pod to the list of pods that reference the
    	// specified volume and is scheduled to the specified node.
    	// A unique volumeName is generated from the volumeSpec and returned on
    	// success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            this.settingsIndexName = settingsIndexName;
            this.initialSettings = initialSettings;
            this.timeoutSettings = timeoutSettings;
    
            this.badWordIndexName = settingsIndexName + "-badword";
            this.elevateWordIndexName = settingsIndexName + "-elevateword";
        }
    
        public void init() {
            if (initialized) {
                return;
            }
            initialized = true;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/internal/cov/read_test.go

    type visitor struct {
    	metaFileCount    int
    	counterFileCount int
    	funcCounterData  int
    	metaFuncCount    int
    }
    
    func (v *visitor) BeginPod(p pods.Pod) {}
    func (v *visitor) EndPod(p pods.Pod)   {}
    func (v *visitor) VisitMetaDataFile(mdf string, mfr *decodemeta.CoverageMetaFileReader) {
    	v.metaFileCount++
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/coverage/test/roundtrip_test.go

    	if pmp != mp {
    		t.Errorf("dec.ModulePath(): got %s want %s", pmp, mp)
    	}
    }
    
    func TestMetaDataEncoderDecoder(t *testing.T) {
    	// Test encode path.
    	pp := "foo/bar/pkg"
    	pn := "pkg"
    	mp := "barmod"
    	b, err := encodemeta.NewCoverageMetaDataBuilder(pp, pn, mp)
    	if err != nil {
    		t.Fatalf("making builder: %v", err)
    	}
    	f1 := coverage.FuncDesc{
    		Funcname: "func",
    		Srcfile:  "foo.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top