Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 444 for brelaw (0.18 sec)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

                        break; /* outstanding requests */
                    }
                    try {
                        doDisconnect( hard );
                    } catch (IOException ioe0) {
                        ioe = ioe0;
                    }
                case 4: /* in error - reset the transport */
                    thread = null;
                    state = 0;
                    break;
                default:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

                this.thread = null;
                this.state = 6;
                break;
            default:
                log.error("Invalid state: " + this.state);
                this.thread = null;
                this.state = 6;
                break;
            }
    
            if ( ioe != null )
                throw ioe;
    
            return false;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/Handler.java

        /**
         * Vendor-specific default packages. If no packages are specified in
         * "java.protocol.handler.pkgs", the VM uses one or more default
         * packages, which are vendor specific. Sun's is included below
         * for convenience; others could be as well. If a particular vendor's
         * package isn't listed, it can be specified in
         * "java.protocol.handler.pkgs".
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/IntMath.java

            // fall through
          case DOWN:
            increment = false;
            break;
          case UP:
            increment = true;
            break;
          case CEILING:
            increment = signum > 0;
            break;
          case FLOOR:
            increment = signum < 0;
            break;
          case HALF_EVEN:
          case HALF_DOWN:
          case HALF_UP:
            int absRem = abs(rem);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

        // which would result in the surrogate pair being (wrongly) considered safe.
        // If we clip the safe range used during the per-character tests so it is
        // below the values of characters in surrogate pairs, this cannot occur.
        // This approach does mean that we break out of the fast path code in cases
        // where we don't strictly need to, but this situation will almost never
        // occur in practice.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/Handler.java

        /**
         * Vendor-specific default packages.  If no packages are specified in
         * "java.protocol.handler.pkgs", the VM uses one or more default
         * packages, which are vendor specific.  Sun's is included below
         * for convenience; others could be as well.  If a particular vendor's
         * package isn't listed, it can be specified in
         * "java.protocol.handler.pkgs".
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    model = profileInjector.injectProfiles(model, activeExternalProfiles, request, problems);
                }
    
                lineage.add(model);
    
                if (currentData == superData) {
                    break;
                }
    
                // add repositories specified by the current model so that we can resolve the parent
                configureResolver(getModelResolver(request), model, request, problems, false);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Collections2.java

              continue;
            }
            if (q == j + 1) {
              if (j == 0) {
                break;
              }
              s++;
              switchDirection();
              continue;
            }
    
            Collections.swap(list, j - c[j] + s, j - q + s);
            c[j] = q;
            break;
          }
        }
    
        void switchDirection() {
          o[j] = -o[j];
          j--;
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/SortedListsTest.java

              return;
            }
            break;
          case LAST_PRESENT:
            if (list.contains(key)) {
              assertEquals(list.lastIndexOf(key), answer);
              return;
            }
            break;
          case ANY_PRESENT:
            if (list.contains(key)) {
              assertEquals(key, list.get(answer));
              return;
            }
            break;
          case FIRST_AFTER:
            if (list.contains(key)) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

            enterSatisfyGuardAndLeaveInCurrentThread();
            break;
          case UNSATISFIED_AND_UNOCCUPIED_BEFORE_ENTERING:
            break;
          case SATISFIED_AND_OCCUPIED_BEFORE_ENTERING:
            enterSatisfyGuardAndLeaveInCurrentThread();
            enterAndRemainOccupyingInAnotherThread();
            break;
          case SATISFIED_UNOCCUPIED_AND_INTERRUPTED_BEFORE_ENTERING:
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 27.4K bytes
    - Viewed (0)
Back to top