Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 146 for badpod (0.12 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                throw new SuggestIndexException(msg, e);
            }
        }
    
        public SuggestDeleteResponse addBadWord(final String badWord, final boolean apply) {
            final String normalized = normalizer.normalize(badWord, "");
            settings.badword().add(normalized);
            badWords = settings.badword().get(true);
            if (apply) {
                return deleteByQuery(QueryBuilders.wildcardQuery(FieldNames.TEXT, "*" + normalized + "*"));
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/fake/fake_cache.go

    func (c *Cache) ForgetPod(logger klog.Logger, pod *v1.Pod) error {
    	c.ForgetFunc(pod)
    	return nil
    }
    
    // AddPod is a fake method for testing.
    func (c *Cache) AddPod(logger klog.Logger, pod *v1.Pod) error { return nil }
    
    // UpdatePod is a fake method for testing.
    func (c *Cache) UpdatePod(logger klog.Logger, oldPod, newPod *v1.Pod) error { return nil }
    
    // RemovePod is a fake method for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.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;
    
    import javax.validation.constraints.Pattern;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.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 shinsuke
     */
    public class DownloadForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 730 bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer.go

    	}
    
    	cgnl = codegen[numLiterals : numLiterals+numOffsets]
    	for i := range cgnl {
    		cgnl[i] = uint8(offEnc.codes[i].len)
    	}
    	codegen[numLiterals+numOffsets] = badCode
    
    	size := codegen[0]
    	count := 1
    	outIndex := 0
    	for inIndex := 1; size != badCode; inIndex++ {
    		// INVARIANT: We have seen "count" copies of size that have not yet
    		// had output generated for them.
    		nextSize := codegen[inIndex]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.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.api.admin.badword;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
        public String id;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 809 bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober_manager.go

    // probe (AddPod). The worker periodically probes its assigned container and caches the results. The
    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/pod_manager.go

    	return pod, ok
    }
    
    func (pm *basicManager) GetPodAndMirrorPod(aPod *v1.Pod) (pod, mirrorPod *v1.Pod, wasMirror bool) {
    	pm.lock.RLock()
    	defer pm.lock.RUnlock()
    
    	fullName := kubecontainer.GetPodFullName(aPod)
    	if kubetypes.IsMirrorPod(aPod) {
    		return pm.podByFullName[fullName], aPod, true
    	}
    	return aPod, pm.mirrorPodByFullName[fullName], false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

                     * @return return the bar
                     */
                    public String getBar() {
                        return "bar";
                    }
                }
            """
        }
    
        private void badCode() {
            file("src/main/java/com/example/Foo.java").java """
                package com.example;
    
                public class Foo {
                    public String getBar() {
                        return "bar";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	syncer := newTestManager(&fake.Clientset{})
    	pod := getTestPod()
    	pod.UID = "first"
    	syncer.podManager.(mutablePodManager).AddPod(pod)
    	differentPod := getTestPod()
    	differentPod.UID = "second"
    	syncer.podManager.(mutablePodManager).AddPod(differentPod)
    	syncer.kubeClient = fake.NewSimpleClientset(pod)
    	syncer.SetPodStatus(differentPod, getRandomPodStatus())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top