- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 392 for flakes (0.08 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
this.extFileAttributes = extFileAttributes; // shareAccess this.shareAccess = shareAccess; // createDisposition if(( flags & SmbFile.O_TRUNC ) == SmbFile.O_TRUNC ) { // truncate the file if(( flags & SmbFile.O_CREAT ) == SmbFile.O_CREAT ) { // create it if necessary createDisposition = FILE_OVERWRITE_IF; } else {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt
import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Tag import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.RegisterExtension @Flaky @Tag("Slow") class WebSocketHttpTest { // Flaky https://github.com/square/okhttp/issues/4515 // Flaky https://github.com/square/okhttp/issues/4953 @RegisterExtension var clientTestRule = configureClientTestRule() @RegisterExtension
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 35.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/NtlmTest.java
} @Test public void testParsingType1 () throws IOException { int flags = 0x80000000; String suppliedDomain = "TESTDOM"; String suppliedWorkstation = "TESTWS"; Type1Message t1 = new Type1Message(this.context, flags, suppliedDomain, suppliedWorkstation); int origFlags = t1.getFlags();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 16 10:38:43 UTC 2018 - 4.8K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
``` . ├── app # "app" is a Python package │ ├── __init__.py # this file makes "app" a "Python package" │ ├── main.py # "main" module, e.g. import app.main │ ├── dependencies.py # "dependencies" module, e.g. import app.dependencies │ └── routers # "routers" is a "Python subpackage" │ │ ├── __init__.py # makes "routers" a "Python subpackage"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
*/ public boolean isInherited() { return (flags & FLAGS_INHERITED) != 0; } /** * Returns the flags for this ACE. The </tt>isInherited()</tt> * method checks the <tt>FLAGS_INHERITED</tt> bit in these flags. */ public int getFlags() { return flags; } /** * Returns the 'Apply To' text for inheritance of ACEs on
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/flowcontrol/WindowCounter.kt
class WindowCounter( val streamId: Int, ) { /** The total number of bytes consumed. */ var total: Long = 0L private set /** The total number of bytes acknowledged by outgoing `WINDOW_UPDATE` frames. */ var acknowledged: Long = 0L private set val unacknowledged: Long @Synchronized get() = total - acknowledged @Synchronized fun update( total: Long = 0, acknowledged: Long = 0,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 1.4K bytes - Viewed (0) -
istioctl/pkg/multicluster/options.go
type KubeOptions struct { Kubeconfig string Context string Namespace string } // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack, // but it allows us to directly get the final values for each of these flags without needing // to pass pointers-to-flags through all of the (sub)commands. func (o *KubeOptions) prepare(ctx cli.Context) { o.Namespace = ctx.Namespace() if o.Namespace == "" {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Aug 01 23:59:49 UTC 2023 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
return new String( "Trans2FindFirst2[" + super.toString() + ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 2 ) + ",searchCount=" + LIST_COUNT + ",flags=0x" + Hexdump.toHexString( flags, 2 ) + ",informationLevel=0x" + Hexdump.toHexString( informationLevel, 3 ) + ",searchStorageType=" + searchStorageType + ",filename=" + path + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
/** * @param tc * @param authorityServerName * @param domsid * @param rid * @param flags * @return the SIDs of the group members * @throws CIFSException */ SID[] getGroupMemberSids ( CIFSContext tc, String authorityServerName, SID domsid, int rid, int flags ) throws CIFSException; /** * @param authorityServerName * @param tc * @return the server's SID
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java
",informationLevel=0x" + Hexdump.toHexString( informationLevel, 3 ) + ",resumeKey=0x" + Hexdump.toHexString( resumeKey, 4 ) + ",flags=0x" + Hexdump.toHexString( flags, 2 ) + ",filename=" + filename + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.2K bytes - Viewed (0)