Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for isError (1.33 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                            try {
                                t.treeDisconnect(inError, true);
                            } finally {
                                this.tree = null;
                                this.treeAcquired = false;
                            }
                        } else {
                            this.delegate.disconnect(inError);
                        }
                    }
                }
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTree.java

                }
            }
        }
    
        void treeDisconnect(final boolean inError) {
            synchronized (session.transport()) {
    
                if (connectionState != 2) { // not-connected
                    return;
                }
                connectionState = 3; // disconnecting
    
                if (!inError && tid != 0) {
                    try {
                        send(new SmbComTreeDisconnect(), null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. android/pom.xml

                <compilerArgs combine.children="override">
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <arg>--should-stop=ifError=FLOW</arg>
    
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  4. pom.xml

                <compilerArgs combine.children="override">
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <arg>--should-stop=ifError=FLOW</arg>
    
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
Back to top