Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for BI (0.02 sec)

  1. src/debug/buildinfo/buildinfo.go

    // binaries built with module support.
    func Read(r io.ReaderAt) (*BuildInfo, error) {
    	vers, mod, err := readRawBuildInfo(r)
    	if err != nil {
    		return nil, err
    	}
    	bi, err := debug.ParseBuildInfo(mod)
    	if err != nil {
    		return nil, err
    	}
    	bi.GoVersion = vers
    	return bi, nil
    }
    
    type exe interface {
    	// ReadData reads and returns up to size bytes starting at virtual address addr.
    	ReadData(addr, size uint64) ([]byte, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv12-Ed25519

    00000020  7c 0a 1e a9 6c f9 72 84  47 1a 14 03 03 00 01 01  ||...l.r.G.......|
    00000030  16 03 03 00 20 06 f8 af  f4 38 35 de 88 74 d6 cc  |.... ....85..t..|
    00000040  a8 fa 2c ee a4 88 42 5c  4a aa 62 49 dc 32 da 15  |..,...B\J.bI.2..|
    00000050  1d 9c 5a b8 59                                    |..Z.Y|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 20 3a 16 00 b6 c5  |.......... :....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

            .roundUnnecessaryShouldThrow()
            .test();
      }
    
      @J2ktIncompatible
      @GwtIncompatible
      public void testRoundToDouble_wayTooBig() {
        BigInteger bi = BigInteger.ONE.shiftLeft(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)
            .roundUnnecessaryShouldThrow()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    			w.Pos = w.Pos.WithIsStmt()
    			pendingLines.remove(w.Pos)
    		}
    	}
    
    	// Any boundary that failed to match a live value can move to a block end
    	pendingLines.foreachEntry(func(j int32, l uint, bi int32) {
    		b := f.Blocks[bi]
    		if b.Pos.Line() == l && b.Pos.FileIndex() == j {
    			b.Pos = b.Pos.WithIsStmt()
    		}
    	})
    
    	// Remove dead values from blocks' value list. Return dead
    	// values to the allocator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/sepa.js

    ,"F03F16F01"],["SI",19,"F05F08F02"],["SK",24,"F04F06F10"],["SM",27,"U01F05F05A12"],["ST",25,"F08F11F02"],["TL",23,"F03F14F02"],["TN",24,"F02F03F13F02"],["TR",26,"F05F01A16"],["VG",24,"U04F16"],["XK",20,"F04F10F02"],["AO",25,"F21"],["BF",27,"F23"],["BI",16,"F12"],["BJ",28,"F24"],["CI",28,"U01F23"],["CM",27,"F23"],["CV",25,"F21"],["DZ",24,"F20"],["IR",26,"F22"],["JO",30,"A04F22"],["MG",27,"F23"],["ML",28,"U01F23"],["MZ",25,"F21"],["QA",29,"U04A21"],["SN",28,"U01F23"],["UA",29,"F25"]],c=function(a)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  6. src/math/big/natconv.go

    		p *= b
    		n++
    	}
    	// p == b**n && p <= _M
    	return
    }
    
    // pow returns x**n for n > 0, and 1 otherwise.
    func pow(x Word, n int) (p Word) {
    	// n == sum of bi * 2**i, for 0 <= i < imax, and bi is 0 or 1
    	// thus x**n == product of x**(2**i) for all i where bi == 1
    	// (Russian Peasant Method for exponentiation)
    	p = 1
    	for n > 0 {
    		if n&1 != 0 {
    			p *= x
    		}
    		x *= x
    		n >>= 1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  7. cmd/metacache-set.go

    				}
    			}
    
    			// We finished at the end of the block.
    			// And should not expect any more results.
    			bi, err := getMetacacheBlockInfo(fi, partN)
    			internalLogIf(ctx, err)
    			if err != nil || bi.EOS {
    				// We are done and there are no more parts.
    				return entries, io.EOF
    			}
    			if bi.endedPrefix(o.Prefix) {
    				// Nothing more for prefix.
    				return entries, io.EOF
    			}
    			partN++
    			retries = 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    	FOLL     = 1 << 8
    	NOSCHED  = 1 << 9
    	PFX_X64B = 1 << 10 // A prefixed instruction crossing a 64B boundary
    )
    
    // Values for use in branch instruction BC
    // BC B0,BI,label
    // BO is type of branch + likely bits described below
    // BI is CR value + branch type
    // ex: BEQ CR2,label is BC 12,10,label
    //   12 = BO_BCR
    //   10 = BI_CR2 + BI_EQ
    
    const (
    	BI_CR0 = 0
    	BI_CR1 = 4
    	BI_CR2 = 8
    	BI_CR3 = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    			for i, s := range slc {
    				dIdx := depIdx[s.DeploymentID]
    				var hasBucket, isBucketMarkedDeleted bool
    
    				bi, ok := sris[dIdx].Buckets[s.Bucket]
    				if ok {
    					isBucketMarkedDeleted = !bi.DeletedAt.IsZero() && (bi.CreatedAt.IsZero() || bi.DeletedAt.After(bi.CreatedAt))
    					hasBucket = !bi.CreatedAt.IsZero()
    				}
    				quotaCfgSet := hasBucket && quotaCfgs[i] != nil && *quotaCfgs[i] != madmin.BucketQuota{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-IssueTicketPreDisable

    00000120  00 00 00 00 00 00 00 00  00 00 00 00 00 06 55 3d  |..............U=|
    00000130  42 f5 12 b2 66 aa af 00  91 5e b8 31 ae 19 0e 35  |B...f....^.1...5|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top