- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,220 for start (0.02 sec)
-
cmd/httprange.go
return 0, 0, err } start = h.Start if h.IsSuffixLength { start = resourceSize + h.Start if start < 0 { start = 0 } } return start, length, nil } // Parse a HTTP range header value into a HTTPRangeSpec func parseRequestRangeSpec(rangeString string) (hrange *HTTPRangeSpec, err error) { // Return error if given range string doesn't start with byte range prefix.
Registered: 2024-11-03 19:28 - Last Modified: 2024-05-09 08:44 - 5.9K bytes - Viewed (0) -
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: 2024-10-31 13:40 - Last Modified: 2023-01-15 06:32 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/StopwatchTest.java
} public void testStart() { assertSame(stopwatch, stopwatch.start()); assertTrue(stopwatch.isRunning()); } public void testStart_whileRunning() { stopwatch.start(); assertThrows(IllegalStateException.class, stopwatch::start); assertTrue(stopwatch.isRunning()); } public void testStop() { stopwatch.start(); assertSame(stopwatch, stopwatch.stop());
Registered: 2024-11-01 12:43 - Last Modified: 2024-09-17 18:14 - 5.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ComparisonChainTest.java
assertThat(ComparisonChain.start().compareFalseFirst(false, true).result()).isLessThan(0); assertThat(ComparisonChain.start().compareFalseFirst(false, false).result()).isEqualTo(0); } public void testCompareTrueFirst() { assertThat(ComparisonChain.start().compareTrueFirst(true, true).result()).isEqualTo(0);
Registered: 2024-11-01 12:43 - Last Modified: 2024-02-27 13:27 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
andx = null; dst[start + ANDX_COMMAND_OFFSET] = (byte)0xFF; dst[start + ANDX_RESERVED_OFFSET] = (byte)0x00; // dst[start + ANDX_OFFSET_OFFSET] = (byte)0x00; // dst[start + ANDX_OFFSET_OFFSET + 1] = (byte)0x00; dst[start + ANDX_OFFSET_OFFSET] = (byte)0xde; dst[start + ANDX_OFFSET_OFFSET + 1] = (byte)0xde;
Registered: 2024-11-03 00:10 - Last Modified: 2019-03-22 21:10 - 11.3K bytes - Viewed (0) -
src/bytes/iter.go
start := -1 for i := 0; i < len(s); { size := 1 r := rune(s[i]) if r >= utf8.RuneSelf { r, size = utf8.DecodeRune(s[i:]) } if f(r) { if start >= 0 { if !yield(s[start:i:i]) { return } start = -1 } } else if start < 0 { start = i } i += size } if start >= 0 { yield(s[start:len(s):len(s)]) } }
Registered: 2024-11-05 11:13 - Last Modified: 2024-08-14 18:23 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
Registered: 2024-11-03 00:10 - Last Modified: 2018-07-01 13:12 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
( resultCode & 0x0F )); writeInt2( questionCount, dst, start + QUESTION_OFFSET ); writeInt2( answerCount, dst, start + ANSWER_OFFSET ); writeInt2( authorityCount, dst, start + AUTHORITY_OFFSET ); writeInt2( additionalCount, dst, start + ADDITIONAL_OFFSET ); return HEADER_LENGTH; } int readHeaderWireFormat( byte[] src, int srcIndex ) {
Registered: 2024-11-03 00:10 - Last Modified: 2019-03-22 20:39 - 12.4K bytes - Viewed (0) -
internal/s3select/select.go
if start < 0 { return 0, 0, errors.New("ScanRange: Start after EOF") } return start, -1, nil } if s.Start == nil { // Suffix length end := int64(*s.End) if end < 0 { return 0, 0, errors.New("ScanRange: End bigger than file") } // Suffix length return -end, -1, nil } start = int64(*s.Start) end := int64(*s.End) return start, end - start + 1, nil }
Registered: 2024-11-03 19:28 - Last Modified: 2024-09-22 00:33 - 21.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StopwatchTest.java
} public void testStart() { assertSame(stopwatch, stopwatch.start()); assertTrue(stopwatch.isRunning()); } public void testStart_whileRunning() { stopwatch.start(); assertThrows(IllegalStateException.class, stopwatch::start); assertTrue(stopwatch.isRunning()); } public void testStop() { stopwatch.start(); assertSame(stopwatch, stopwatch.stop());
Registered: 2024-11-01 12:43 - Last Modified: 2024-09-17 18:14 - 5.7K bytes - Viewed (0)