- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 3,609 for uint (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/SambaHelper.java
public static final int SID_TYPE_ALIAS = 4; public static final int SID_TYPE_DELETED = 6; public static final int SID_TYPE_DOM_GRP = 2; public static final int SID_TYPE_DOMAIN = 3; public static final int SID_TYPE_INVALID = 7; public static final int SID_TYPE_UNKNOWN = 8; public static final int SID_TYPE_USE_NONE = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
private byte[] token; private int capabilities; private boolean sessionBinding; private long previousSessionId; private int securityMode; /** * @param context * @param securityMode * @param capabilities * @param previousSessionid * @param token */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/InternersBenchmark.java
public class InternersBenchmark { @Benchmark int weakInterner(int reps) { Interner<String> interner = Interners.newWeakInterner(); for (int i = 0; i < reps; i++) { String unused = interner.intern(Double.toHexString(Math.random())); } return reps; } @Benchmark int strongInterner(int reps) { Interner<String> interner = Interners.newStrongInterner(); for (int i = 0; i < reps; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Mar 04 04:06:35 UTC 2022 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm64.go
// instruction set, to minimize its interaction with the core of the // assembler. package arch import ( "cmd/internal/obj" "cmd/internal/obj/arm64" "errors" ) var arm64LS = map[string]uint8{ "P": arm64.C_XPOST, "W": arm64.C_XPRE, } var arm64Jump = map[string]bool{ "B": true, "BL": true, "BEQ": true, "BNE": true, "BCS": true, "BHS": true, "BCC": true,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Sep 29 09:04:58 UTC 2022 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
this.identifier_authority = new byte[6]; for ( int i = 5; id > 0; i-- ) { this.identifier_authority[ i ] = (byte) ( id % 256 ); id >>= 8; } this.sub_authority_count = (byte) st.countTokens(); if ( this.sub_authority_count > 0 ) { this.sub_authority = new int[this.sub_authority_count]; for ( int i = 0; i < this.sub_authority_count; i++ )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComDeleteDirectory.java
command = SMB_COM_DELETE_DIRECTORY; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; dst[dstIndex++] = (byte)0x04; dstIndex += writeString( path, dst, dstIndex ); return dstIndex - start; } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/DaemonTracker.kt
cleanUpDaemons() } fun newDaemonListener() = object : TestListener { override fun beforeTest(test: TestDescriptor) = Unit override fun afterTest(test: TestDescriptor, result: TestResult) = Unit override fun beforeSuite(suite: TestDescriptor) { if (suite.parent == null) { forEachJavaProcess { pid, _ ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jan 08 12:45:57 UTC 2024 - 3.4K bytes - Viewed (0) -
cmd/object-api-listobjects_test.go
func TestListObjects(t *testing.T) { ExecObjectLayerTest(t, testListObjects) } // Unit test for ListObjects on VersionedBucket. func testListObjectsOnVersionedBuckets(obj ObjectLayer, instanceType string, t1 TestErrHandler) { _testListObjects(obj, instanceType, t1, true) } // Unit test for ListObjects. func testListObjects(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 01 11:07:40 UTC 2024 - 73.1K bytes - Viewed (0) -
src/cmd/api/testdata/src/pkg/p3/golden.txt
pkg p3, func BadHop(int, int, int) (bool, bool, *ThirdBase, *ThirdBase, error) pkg p3, method (*ThirdBase) GoodPlayer() (int, int, int)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jan 29 00:45:45 UTC 2013 - 166 bytes - Viewed (0)