- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 34 for estraverse (0.07 seconds)
-
guava/src/com/google/common/collect/ImmutableMapEntry.java
import java.util.AbstractMap.SimpleImmutableEntry; import org.jspecify.annotations.Nullable; /** * Implementation of {@code Entry} for {@link ImmutableMap} that adds extra methods to traverse hash * buckets for the key and the value. This allows reuse in {@link RegularImmutableMap} and {@link * RegularImmutableBiMap}, which don't have to recopy the entries created by their {@code Builder} * implementations. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 01 21:42:29 GMT 2025 - 4.6K bytes - Click Count (0) -
cmd/metacache-walk.go
// Leave empty to not check disk ID. DiskID string } // supported FS for Nlink optimization in readdir. const ( xfs = "XFS" ext4 = "EXT4" ) // WalkDir will traverse a directory and return all entries found. // On success a sorted meta cache stream will be returned. // Metadata has data stripped, if any. // The function tries to quit as fast as the context is canceled to avoid further drive IO
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon May 26 07:06:43 GMT 2025 - 12.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/GeneralRangeTest.java
assertEquals( GeneralRange.range(Ordering.natural(), 3, lowerType, 4, upperType), GeneralRange.from(Range.range(3, lowerType, 4, upperType))); } } } public void testReverse() { assertEquals(GeneralRange.all(ORDERING.reverse()), GeneralRange.all(ORDERING).reverse()); assertEquals( GeneralRange.downTo(ORDERING.reverse(), 3, CLOSED),
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 8.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/GeneralRangeTest.java
assertEquals( GeneralRange.range(Ordering.natural(), 3, lowerType, 4, upperType), GeneralRange.from(Range.range(3, lowerType, 4, upperType))); } } } public void testReverse() { assertEquals(GeneralRange.all(ORDERING.reverse()), GeneralRange.all(ORDERING).reverse()); assertEquals( GeneralRange.downTo(ORDERING.reverse(), 3, CLOSED),
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 8.4K bytes - Click Count (0) -
src/main/java/jcifs/ACE.java
*/ int FILE_READ_EA = 0x00000008; // 4 /** * Permission to write extended attributes */ int FILE_WRITE_EA = 0x00000010; // 5 /** * Permission to execute a file or traverse a directory */ int FILE_EXECUTE = 0x00000020; // 6 /** * Permission to delete a file or directory */ int FILE_DELETE = 0x00000040; // 7 /** * Permission to read file attributesCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.1K bytes - Click Count (0) -
internal/s3select/sql/aggregation.go
func (e *FuncExpr) aggregateRow(r Record, tableAlias string) error { switch e.getFunctionName() { case aggFnAvg, aggFnSum, aggFnMax, aggFnMin, aggFnCount: return e.evalAggregationNode(r, tableAlias) default: // TODO: traverse arguments and call aggregateRow on // them if they could be an ancestor of an // aggregation. } return nil } // getAggregate() implementation for each AST node follows. This is
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Dec 23 07:19:11 GMT 2023 - 7.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int FILE_READ_EA = 0x00000008; // 4 /** Permission to write extended attributes */ public static final int FILE_WRITE_EA = 0x00000010; // 5 /** Permission to execute a file or traverse a directory */ public static final int FILE_EXECUTE = 0x00000020; // 6 /** Permission to delete a file or directory */ public static final int FILE_DELETE = 0x00000040; // 7Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The object was not found */ int NT_STATUS_NOT_FOUND = 0xC0000225; /** The referenced account is currently locked out */ int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; /** The pathname does not traverse a DFS junction */ int NT_STATUS_PATH_NOT_COVERED = 0xC0000257; /** The IO operation on the reparse point failed */ int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
} catch (IOException e) { throw UncheckedException.throwAsUncheckedException(e); } } private void removeLeftoverComments(Document document) { document.traverse(new NodeVisitor() { @Override public void head(Node node, int depth) { if (node.nodeName().equals("#comment")) { node.remove(); }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue May 27 09:07:14 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_ACCOUNT_LOCKED_OUT = 0xC0000234; /** The remote system refused the network connection */ int NT_STATUS_CONNECTION_REFUSED = 0xC0000236; /** The pathname does not traverse a DFS junction */ int NT_STATUS_PATH_NOT_COVERED = 0xC0000257; /** The IO operation on the reparse point failed */ int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0)