Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 597 for stop (0.17 sec)

  1. 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 15 08:04:17 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 1.7K bytes
    - Viewed (1)
  2. 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 15 08:04:17 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  3. 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 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  4. 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 15 08:04:17 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  5. 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 15 08:04:17 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  6. 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 15 08:04:17 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  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/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 15 08:04:17 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  9. src/packaging/deb/init.d/fess

    #
    ### BEGIN INIT INFO
    # Provides:          fess
    # Required-Start:    $network $remote_fs $named
    # Required-Stop:     $network $remote_fs $named
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: Starts fess
    # Description:       Starts fess using start-stop-daemon
    ### END INIT INFO
    
    PATH=/bin:/usr/bin:/sbin:/usr/sbin
    NAME=fess
    DESC="Fess Server"
    DEFAULT=/etc/default/$NAME
    
    Shell Script
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K 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 17 22:53:10 GMT 2024
    - Last Modified: Tue Oct 24 03:31:28 GMT 2023
    - 10.6K bytes
    - Viewed (0)
Back to top