Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 413 for stopFn (1.06 sec)

  1. src/main/resources/suggest_indices/suggest_analyzer.json

            "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",
            "stopwords":  "_danish_"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRequest.kt

        when (kotlinScriptTypeFor(scriptFile)) {
            KotlinScriptType.INIT -> false
            else -> true
        }
    
    
    internal
    fun projectRootOf(scriptFile: File, importedProjectRoot: File, stopAt: File? = null): File {
    
        // TODO remove hardcoded reference to settings.gradle once there's a public TAPI client api for that
        fun isProjectRoot(dir: File) =
            File(dir, "settings.gradle.kts").isFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. 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() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 16:55:07 UTC 2023
    - 939 bytes
    - Viewed (0)
  4. 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
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.data_config.json

            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
                "stemmer"
              ]
            }
          }
        }
      }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 484 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_gowork.txt

    env GOWORK=stop.work
    ! go list a # require absolute path
    ! stderr panic
    env GOWORK=doesnotexist
    ! go list a
    ! stderr panic
    
    env GOWORK=$GOPATH/src/stop.work
    go list -n a
    go build -n a
    go test -n a
    
    -- stop.work --
    go 1.18
    
    use ./a
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a
    -- a/go.mod --
    module a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 314 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();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  9. src/main/resources/suggest_indices/suggest_analyzer.json

          "arabic_stop": {
            "type":       "stop",
            "stopwords":  "_arabic_"
          },
          "arabic_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["مرحباا"]
          },
          "arabic_stemmer": {
            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_atomic_pkgall.txt

    env GO111MODULE=off
    
    [short] skip
    
    go test -coverpkg=all -covermode=atomic x
    stdout ok[\s\S]+?coverage
    
    [!race] stop
    
    go test -coverpkg=all -race x
    stdout ok[\s\S]+?coverage
    
    -- x/x.go --
    package x
    
    import _ "sync/atomic"
    
    func F() {}
    
    -- x/x_test.go --
    package x
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 316 bytes
    - Viewed (0)
Back to top