Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 664 for Stop (0.15 sec)

  1. src/main/resources/fess_indices/fess.json

              ]
            },
            "japanese_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}ja/stopwords.txt"
            },
            "korean_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}ko/stopwords.txt"
            },
            "latvian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  2. src/packaging/common/scripts/prerm

    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    STOP_REQUIRED=false
    
    case "$1" in
    
        # Debian ####################################################
        remove)
            STOP_REQUIRED=true
        ;;
        upgrade)
            if [ "$RESTART_ON_UPGRADE" = "true" ]; then
                STOP_REQUIRED=true
            fi
        ;;
        deconfigure|failed-upgrade)
        ;;
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 1.7K bytes
    - Viewed (1)
  3. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "greek_stemmer": {
            "type":       "stemmer",
            "language":   "greek"
          },
          "hindi_stop": {
            "type":       "stop",
            "stopwords":  "_hindi_"
          },
          "hungarian_stop": {
            "type":       "stop",
            "stopwords":  "_hungarian_"
          },
          "hungarian_keywords": {
            "type":       "keyword_marker",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "greek_stemmer": {
            "type":       "stemmer",
            "language":   "greek"
          },
          "hindi_stop": {
            "type":       "stop",
            "stopwords":  "_hindi_"
          },
          "hungarian_stop": {
            "type":       "stop",
            "stopwords":  "_hungarian_"
          },
          "hungarian_keywords": {
            "type":       "keyword_marker",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/suggest_analyzer.json

          "czech_stop": {
            "type":       "stop",
            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}cs/protwords.txt"
          },
          "czech_stemmer": {
            "type":       "stemmer",
            "language":   "czech"
          },
          "danish_stop": {
            "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  6. src/packaging/rpm/init.d/fess

        fi
        echo
        [ $retval -eq 0 ] && touch $lockfile
        return $retval
    }
    
    stop() {
        echo -n $"Stopping $prog: "
        # stop it here, often "killproc $prog"
        killproc -p $pidfile -d 20 $prog
        retval=$?
        echo
        [ $retval -eq 0 ] && rm -f $lockfile
        return $retval
    }
    
    restart() {
        stop
        start
    }
    
    reload() {
        restart
    }
    
    force_reload() {
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  7. guava-tests/test/com/google/common/base/StopwatchTest.java

        stopwatch.start();
        assertSame(stopwatch, stopwatch.stop());
        assertFalse(stopwatch.isRunning());
      }
    
      public void testStop_new() {
        try {
          stopwatch.stop();
          fail();
        } catch (IllegalStateException expected) {
        }
        assertFalse(stopwatch.isRunning());
      }
    
      public void testStop_alreadyStopped() {
        stopwatch.start();
        stopwatch.stop();
        try {
          stopwatch.stop();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/cgo_thread_lock.go

    	testThreadLockFunc = testThreadLock
    }
    
    func testThreadLock(t *testing.T) {
    	stop := make(chan int)
    	go func() {
    		// We need the G continue running,
    		// so the M has a chance to run this G.
    		for {
    			select {
    			case <-stop:
    				return
    			case <-time.After(time.Millisecond * 100):
    			}
    		}
    	}()
    	defer close(stop)
    
    	for i := 0; i < 1000; i++ {
    		if !C.Ctid() {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu May 18 16:55:07 GMT 2023
    - 939 bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess.json

                "非言語音",
                "連体詞"
              ]
            },
            "japanese_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "korean_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "latvian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  10. cni/pkg/repair/repair_test.go

    			assert.NoError(t, err)
    			t.Cleanup(func() {
    				assert.NoError(t, c.queue.WaitForClose(time.Second))
    			})
    			stop := test.NewStop(t)
    			tt.client.RunAndWait(stop)
    			go c.Run(stop)
    			kube.WaitForCacheSync("test", stop, c.queue.HasSynced)
    
    			assert.EventuallyEqual(t, func() map[string]string {
    				havePods := c.pods.List(metav1.NamespaceAll, klabels.Everything())
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Oct 24 03:31:28 GMT 2023
    - 10.6K bytes
    - Viewed (0)
Back to top