Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 417 for Stuart (0.48 sec)

  1. src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java

                try {
                    Thread.sleep(1000);
                } catch (InterruptedException ignore) {}
                deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null));
            });
            th.start();
    
            final CountDownLatch latch = new CountDownLatch(1);
            deferred.promise().then(response -> latch.countDown());
            assertTrue(latch.await(10, TimeUnit.SECONDS));
        }
    
        @Test
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    	for start := end - 1; start >= 0; start-- {
    		if l[start] == sep {
    			i, err := strconv.Atoi(l[start+1 : end])
    			if err != nil {
    				return 0, 0, fmt.Errorf("couldn't parse %q: %v", what, err)
    			}
    			if i < 0 {
    				return 0, 0, fmt.Errorf("negative values are not allowed for %s, found %d", what, i)
    			}
    			return i, start, nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  3. 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"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/doc.go

    // that this is nearly always a mistake.
    //
    // For example:
    //
    //	start := time.Now()
    //	...
    //	defer recordLatency(time.Since(start)) // error: call to time.Since is not deferred
    //
    // The correct code is:
    //
    //	defer func() { recordLatency(time.Since(start)) }()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 20:06:48 UTC 2023
    - 763 bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/table.go

    func (b *tableBuilder) parseAlign(delim tableTrimmed, n int) []string {
    	align := make([]string, 0, tableCount(delim))
    	start := 0
    	for i := 0; i < len(delim); i++ {
    		if delim[i] == '|' {
    			align = append(align, tableAlign(string(delim[start:i])))
    			start = i + 1
    		}
    	}
    	align = append(align, tableAlign(string(delim[start:])))
    	return align
    }
    
    func tableAlign(cell string) string {
    	cell = tableTrimSpace(cell)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/objdump/main.go

    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/ByteInputTest.groovy

            file.writeInt(456)
    
            expect:
            def stream = input.start(0)
            stream.readInt() == 123
            stream.readInt() == 321
            input.done()
    
            def stream2 = input.start(4)
            stream2.readInt() == 321
            stream2.readInt() == 456
            input.done()
    
            def stream3 = input.start(0)
            stream3.readInt() == 123
            input.done()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/msan4.go

    }
    
    */
    import "C"
    
    import (
    	"runtime"
    )
    
    func main() {
    	runtime.MemProfileRate = 1
    	start(100)
    }
    
    func start(i int) {
    	if i == 0 {
    		return
    	}
    	C.poison()
    	// Tie up a thread.
    	// We won't actually wait for this sleep to complete.
    	go func() { C.sleep(1) }()
    	start(i - 1)
    }
    
    //export Nop
    func Nop(*C.char) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 878 bytes
    - Viewed (0)
  9. guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

       * @param encoded The serialized trie.
       * @param start An index in the encoded serialized trie to begin reading characters from.
       * @param builder A map builder to which all entries will be added.
       * @return The number of characters consumed from {@code encoded}.
       */
      private static int doParseTrieToBuilder(
          Deque<CharSequence> stack,
          CharSequence encoded,
          int start,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/robustio/robustio_flaky.go

    			bestErr = err
    			lowestErrno = errno
    		} else if bestErr == nil {
    			bestErr = err
    		}
    
    		if start.IsZero() {
    			start = time.Now()
    		} else if d := time.Since(start) + nextSleep; d >= arbitraryTimeout {
    			break
    		}
    		time.Sleep(nextSleep)
    		nextSleep += time.Duration(rand.Int63n(int64(nextSleep)))
    	}
    
    	return bestErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top