- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 252 for Opened (0.04 sec)
-
src/main/java/jcifs/dcerpc/msrpc/SamrDomainHandle.java
handle.sendrecv(rpc); if ( rpc.retval != 0 ) { throw new SmbException(rpc.retval, false); } this.opened = true; } @Override public synchronized void close () throws IOException { if ( this.opened ) { this.opened = false; MsrpcSamrCloseHandle rpc = new MsrpcSamrCloseHandle(this); this.handle.sendrecv(rpc);
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/SamrAliasHandle.java
handle.sendrecv(rpc); if ( rpc.retval != 0 ) { throw new SmbException(rpc.retval, false); } this.opened = true; } @Override public synchronized void close () throws IOException { if ( this.opened ) { this.opened = false; MsrpcSamrCloseHandle rpc = new MsrpcSamrCloseHandle(this); this.handle.sendrecv(rpc);
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/LsaPolicyHandle.java
handle.sendrecv(rpc); if ( rpc.retval != 0 ) { throw new SmbException(rpc.retval, false); } this.opened = true; } @Override public synchronized void close () throws IOException { if ( this.opened ) { this.opened = false; MsrpcLsarClose rpc = new MsrpcLsarClose(this); this.handle.sendrecv(rpc); if ( rpc.retval != 0 ) {
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/SamrPolicyHandle.java
MsrpcSamrConnect2 rpc2 = new MsrpcSamrConnect2(server, access, this); handle.sendrecv(rpc2); } this.opened = true; } @Override public synchronized void close () throws IOException { if ( this.opened ) { this.opened = false; samr.SamrCloseHandle rpc = new MsrpcSamrCloseHandle(this); this.handle.sendrecv(rpc);
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 2.2K bytes - Viewed (0) -
.github/workflows/labeler.yml
name: "Issue Labeler" on: issues: types: [opened, edited, reopened] pull_request: types: [opened, edited, reopened] jobs: triage: runs-on: ubuntu-latest name: Label issues and pull requests steps: - name: check out uses: actions/checkout@v4 - name: labeler uses: jinzhu/super-labeler-action@develop with:
Registered: 2025-05-25 09:35 - Last Modified: 2023-10-10 06:50 - 423 bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeResource.java
/** * The pipe should be opened read-only. */ public static final int PIPE_TYPE_RDONLY = SmbConstants.O_RDONLY; /** * The pipe should be opened only for writing. */ public static final int PIPE_TYPE_WRONLY = SmbConstants.O_WRONLY; /** * The pipe should be opened for both reading and writing. */
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
public class SmbNamedPipe extends SmbFile { /** * The pipe should be opened read-only. */ public static final int PIPE_TYPE_RDONLY = O_RDONLY; /** * The pipe should be opened only for writing. */ public static final int PIPE_TYPE_WRONLY = O_WRONLY; /** * The pipe should be opened for both reading and writing. */
Registered: 2025-05-25 00:10 - Last Modified: 2019-03-22 21:10 - 7.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSinkTest.java
TestCharSink okSink = new TestCharSink(); assertThrows(IOException.class, () -> failSource.copyTo(okSink)); // ensure writer was closed IF it was opened (depends on implementation whether or not it's // opened at all if source.newReader() throws). assertTrue( "stream not closed when copying from source with option: " + option,
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 4.6K bytes - Viewed (0) -
.github/workflows/issues.yaml
# @format name: Issue Workflow on: issues: types: - opened jobs: add-to-project: name: Add issue to project runs-on: ubuntu-latest steps: - uses: actions/add-to-project@v0.5.0 with: project-url: https://github.com/orgs/miniohq/projects/2
Registered: 2025-05-25 19:28 - Last Modified: 2024-01-11 07:02 - 338 bytes - Viewed (0) -
.github/workflows/issue-metadata.yml
name: Check issues metadata on: issues: types: [ opened, unlabeled, closed, reopened ] permissions: {} jobs: check_issue_metadata: permissions: issues: write runs-on: ubuntu-latest steps: # Check that issues have proper metadata: labels and milestone # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
Registered: 2025-05-28 11:36 - Last Modified: 2025-05-08 14:08 - 439 bytes - Viewed (0)