Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for BI (0.02 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java

            if (a.size() != b.size()) {
                return false;
            }
    
            Iterator<Dependency> aI = a.iterator();
            Iterator<Dependency> bI = b.iterator();
    
            while (aI.hasNext()) {
                Dependency aD = aI.next();
                Dependency bD = bI.next();
    
                boolean r = Objects.equals(aD.getGroupId(), bD.getGroupId()) //
                        && Objects.equals(aD.getArtifactId(), bD.getArtifactId()) //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

            .roundUnnecessaryShouldThrow()
            .test();
      }
    
      public void testRoundToDouble_wayTooBig() {
        BigDecimal bi = BigDecimal.valueOf(2).pow(2 * Double.MAX_EXPONENT);
        new RoundToDoubleTester(bi)
            .setExpectation(Double.MAX_VALUE, DOWN, FLOOR, HALF_EVEN, HALF_UP, HALF_DOWN)
            .setExpectation(Double.POSITIVE_INFINITY, UP, CEILING)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/version/version.go

    				if isGoBinaryCandidate(file, info) {
    					fmt.Fprintf(os.Stderr, "%s: %v\n", file, err)
    				}
    			}
    		}
    		return
    	}
    
    	fmt.Printf("%s: %s\n", file, bi.GoVersion)
    	bi.GoVersion = "" // suppress printing go version again
    	mod := bi.String()
    	if *versionM && len(mod) > 0 {
    		fmt.Printf("\t%s\n", strings.ReplaceAll(mod[:len(mod)-1], "\n", "\n\t"))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue33219.dir/c.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Another(pxp a.A) int32
    }
    
    //go:noinline
    func BRS(sd a.A, xyz int) *b.Service {
    	x := b.Yes(sd, nil)
    	return b.No(x, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 339 bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    	}
    	// Position base[b0:bi] and targ[t0:ti] at the first differing elements.
    	bl := len(base)
    	tl := len(targ)
    	var b0, bi, t0, ti int
    	for {
    		for bi < bl && base[bi] != Separator {
    			bi++
    		}
    		for ti < tl && targ[ti] != Separator {
    			ti++
    		}
    		if !sameWord(targ[t0:ti], base[b0:bi]) {
    			break
    		}
    		if bi < bl {
    			bi++
    		}
    		if ti < tl {
    			ti++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		}
    		return op + " " + strings.Join(args, ", ")
    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    		if bo&0x17 == 4 { // jump only a CR bit set/unset, no hints (at bits) set.
    			if bi >= 4 {
    				return fmt.Sprintf("B%s CR%d,%s", bcname, bi>>2, args[2])
    			} else {
    				return fmt.Sprintf("B%s %s", bcname, args[2])
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/strconv/ctoa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strconv
    
    // FormatComplex converts the complex number c to a string of the
    // form (a+bi) where a and b are the real and imaginary parts,
    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. tools/docker-builder/builder/crane.go

    				OS:           "linux",
    			}
    			bi, err := remote.Image(ref, remote.WithPlatform(plat), remote.WithProgress(CreateProgress(fmt.Sprintf("base %v", ref))))
    			if err != nil {
    				log.WithLabels("image", b).Warnf("base failed: %v", err)
    				return
    			}
    			log.WithLabels("image", b, "step", time.Since(t0)).Infof("base loaded")
    			resolvedBaseImages[i] = bi
    		}()
    	}
    }
    
    func ByteCount(b int64) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/runtime/mpallocbits.go

    			newSearchIdx = i*64 + uint(sys.TrailingZeros64(^bi))
    		}
    		start := uint(sys.TrailingZeros64(bi))
    		if end+start >= uint(npages) {
    			return i*64 - end, newSearchIdx
    		}
    		// Next, check the interior of the 64-bit chunk.
    		j := findBitRange64(^bi, uint(npages))
    		if j < 64 {
    			return i*64 + j, newSearchIdx
    		}
    		end = uint(sys.LeadingZeros64(bi))
    	}
    	return ^uint(0), newSearchIdx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingClient.java

     */
    package org.gradle.internal.remote;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A {@code MessagingClient} maintains a single bi-directional uni-cast object connection with some peer.
     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingClient {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top