Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for BI (0.29 sec)

  1. cmd/erasure-server-pool-decom.go

    	var lr objectlock.Retention
    	var rcfg *replication.Config
    	if bi.Name != minioMetaBucket {
    		vc, err = globalBucketVersioningSys.Get(bi.Name)
    		if err != nil {
    			return err
    		}
    
    		// Check if the current bucket has a configured lifecycle policy
    		lc, err = globalLifecycleSys.Get(bi.Name)
    		if err != nil && !errors.Is(err, BucketLifecycleNotFound{Bucket: bi.Name}) {
    			return err
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  2. cmd/peer-s3-client.go

    			if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) {
    				continue
    			}
    			for _, bi := range buckets {
    				_, ok := resultMap[bi.Name]
    				if ok {
    					// Skip it, this bucket is found in another pool
    					continue
    				}
    				bucketsMap[bi.Name]++
    				if bucketsMap[bi.Name] >= quorum {
    					resultMap[bi.Name] = bi
    				}
    			}
    		}
    		// loop through buckets and see if some with lost quorum
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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