Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 776 for brelaw (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

          byteCount: Long,
        ): Long {
          check(fileOperator != null)
    
          val source: Int =
            synchronized(this@Relay) {
              // We need new data from upstream.
              while (true) {
                val upstreamPos = this@Relay.upstreamPos
                if (sourcePos != upstreamPos) break
    
                // No more data upstream. We're done.
                if (complete) return -1L
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.8K 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 May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                        break;
                    case ResolutionListener.PROCESS_CHILDREN:
                        listener.startProcessChildren(node.getArtifact());
                        break;
                    case ResolutionListener.FINISH_PROCESSING_CHILDREN:
                        listener.endProcessChildren(node.getArtifact());
                        break;
                    case ResolutionListener.INCLUDE_ARTIFACT:
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    			prog.To = a[0]
    			prog.From = a[0]
    			break
    		}
    	case 2:
    		if p.arch.Family == sys.ARM {
    			if arch.IsARMCMP(op) {
    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    			// Strange special cases.
    			if arch.IsARMFloatCmp(op) {
    				prog.From = a[0]
    				prog.Reg = p.getRegister(prog, op, &a[1])
    				break
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  5. README.md

    ```sh
    brew install minio/stable/minio
    minio server /data
    ```
    
    > NOTE: If you previously installed minio using `brew install minio` then it is recommended that you reinstall minio from `minio/stable/minio` official repo instead.
    
    ```sh
    brew uninstall minio
    brew install minio/stable/minio
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. 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)
  7. api/go1.10.txt

    pkg debug/elf, const R_ARM_MOVT_BREL = 85
    pkg debug/elf, const R_ARM_MOVT_BREL R_ARM
    pkg debug/elf, const R_ARM_MOVT_PREL = 46
    pkg debug/elf, const R_ARM_MOVT_PREL R_ARM
    pkg debug/elf, const R_ARM_MOVW_ABS_NC = 43
    pkg debug/elf, const R_ARM_MOVW_ABS_NC R_ARM
    pkg debug/elf, const R_ARM_MOVW_BREL = 86
    pkg debug/elf, const R_ARM_MOVW_BREL R_ARM
    pkg debug/elf, const R_ARM_MOVW_BREL_NC = 84
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                            result = false;
                            break;
                        }
                    }
                    // check for exact match
                    else if (repo.equals(originalId)) {
                        result = true;
                        break;
                    }
                    // check for external:*
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeImpl.java

                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                dumpResource();
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        /**
         * @param stackTrace
         * @return
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  10. src/bufio/scan.go

    			if n < 0 || len(s.buf)-s.end < n {
    				s.setErr(ErrBadReadCount)
    				break
    			}
    			s.end += n
    			if err != nil {
    				s.setErr(err)
    				break
    			}
    			if n > 0 {
    				s.empties = 0
    				break
    			}
    			loop++
    			if loop > maxConsecutiveEmptyReads {
    				s.setErr(io.ErrNoProgress)
    				break
    			}
    		}
    	}
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
Back to top