Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for BI (0.04 sec)

  1. 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)
  2. src/main/resources/fess_indices/fess/vi/stopwords.txt

    bị
    bởi
    cả
    các
    cái
    cần
    càng
    chỉ
    chiếc
    cho
    chứ
    chưa
    chuyện
    có
    có thể
    cứ
    của
    cùng
    cũng
    đã
    đang
    đây
    để
    đến nỗi
    đều
    điều
    do
    đó
    được
    dưới
    gì
    khi
    không
    là
    lại
    lên
    lúc
    mà
    mỗi
    một cách
    này
    nên
    nếu
    ngay
    nhiều
    như
    nhưng
    những
    nơi
    nữa
    phải
    qua
    ra
    rằng
    rằng
    rất
    rất
    rồi
    sau
    sẽ
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 457 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/peer-s3-server.go

    			return nil, err
    		}
    	}
    
    	for _, v := range healBuckets {
    		bi := BucketInfo{
    			Name:    v.Name,
    			Created: v.Created,
    		}
    		if vi, ok := deletedBuckets[v.Name]; ok {
    			bi.Deleted = vi.Created
    		}
    		buckets = append(buckets, bi)
    	}
    
    	for _, v := range deletedBuckets {
    		if _, ok := healBuckets[v.Name]; !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/BiActionsTest.groovy

            def b = []
    
            when:
            composite.execute(a, b)
    
            then:
            a == ["first a", "second a"]
            b == ["first b", "second b"]
        }
    
        def "can wrap an action into a bi action that ignores second argument"() {
            given:
            Action<List<String>> action = {a -> a << "added by action" }
            BiAction<List<String>, Object> biAction = BiActions.usingFirstArgument(action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingServer.java

    import org.gradle.api.Action;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A {@code MessagingServer} allows the creation of multiple bi-directional uni-cast connections.
     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingServer {
        /**
         * Creates an endpoint that peers can connect to. Assigns an arbitrary address.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. docs/language_names.yml

    ae: avesta
    af: Afrikaans
    ak: Akan
    am: አማርኛ
    an: aragonés
    ar: اللغة العربية
    as: অসমীয়া
    av: авар мацӀ
    ay: aymar aru
    az: azərbaycan dili
    ba: башҡорт теле
    be: беларуская мова
    bg: български език
    bh: भोजपुरी
    bi: Bislama
    bm: bamanankan
    bn: বাংলা
    bo: བོད་ཡིག
    br: brezhoneg
    bs: bosanski jezik
    ca: Català
    ce: нохчийн мотт
    ch: Chamoru
    co: corsu
    cr: ᓀᐦᐃᔭᐍᐏᐣ
    cs: čeština
    cu: ѩзыкъ словѣньскъ
    cv: чӑваш чӗлхи
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top