Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. docs/yo/docs/index.md

        *  wọ́n ṣe kéde pàrámítà `q` pẹ̀lú `= None`, ó jẹ́ àṣàyàn (i.e optional).
        * Láìsí `None` yóò nílò (gẹ́gẹ́  kókó èsì ìbéèrè HTTP ṣe wà pẹ̀lú `PUT`).
    * Fún àwọn ìbéèrè HTTP `PUT` sí `/items/{item_id}`, kà kókó èsì ìbéèrè HTTP gẹ́gẹ́  JSON:
        * Ṣàyẹ̀wò pé ó ní àbùdá tí ó nílò èyí tíí ṣe `name` i.e. `orúkọ` tí ó yẹ kí ó jẹ́ `str`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue33013.dir/c.go

    // 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 {
    	Something(s int64) int64
    	Another(pxp a.G) int32
    }
    
    func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service {
    	return b.RS(sd, server, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 361 bytes
    - Viewed (0)
  3. src/runtime/debug/mod_test.go

    		build CRAZY_ENV="requires\nescaping"
    		`))
    
    	f.Fuzz(func(t *testing.T, s string) {
    		bi, err := debug.ParseBuildInfo(s)
    		if err != nil {
    			// Not a round-trippable BuildInfo string.
    			t.Log(err)
    			return
    		}
    
    		// s2 could have different escaping from s.
    		// However, it should parse to exactly the same contents.
    		s2 := bi.String()
    		bi2, err := debug.ParseBuildInfo(s2)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/util/Encdec.java

        public static String dec_ucs2le ( byte[] src, int si, int slim, char[] buf ) {
            int bi;
    
            for ( bi = 0; ( si + 1 ) < slim; bi++, si += 2 ) {
                buf[ bi ] = (char) dec_uint16le(src, si);
                if ( buf[ bi ] == '\0' ) {
                    break;
                }
            }
    
            return new String(buf, 0, bi);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  8. test/fixedbugs/bug466.go

    // Copyright 2012 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.
    
    // Issue 4159: exported inlinable functions squash
    // complex literals "a+bi" to "a+b".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 277 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top