Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for BI (0.03 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. src/main/java/jcifs/smb1/smb1/ACE.java

            return sid;
        }
    
        int decode( byte[] buf, int bi ) {
            allow = buf[bi++] == (byte)0x00;
            flags = buf[bi++] & 0xFF;
            int size = ServerMessageBlock.readInt2(buf, bi);
            bi += 2;
            access = ServerMessageBlock.readInt4(buf, bi);
            bi += 4;
            sid = new SID(buf, bi);
            return size;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  3. src/runtime/debug/mod.go

    func quoteValue(value string) bool {
    	return strings.ContainsAny(value, " \t\r\n\"`")
    }
    
    func (bi *BuildInfo) String() string {
    	buf := new(strings.Builder)
    	if bi.GoVersion != "" {
    		fmt.Fprintf(buf, "go\t%s\n", bi.GoVersion)
    	}
    	if bi.Path != "" {
    		fmt.Fprintf(buf, "path\t%s\n", bi.Path)
    	}
    	var formatMod func(string, Module)
    	formatMod = func(word string, m Module) {
    		buf.WriteString(word)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dtyp/ACE.java

        }
    
    
        @Override
        public int decode ( byte[] buf, int bi, int len ) {
            this.allow = buf[ bi++ ] == (byte) 0x00;
            this.flags = buf[ bi++ ] & 0xFF;
            int size = SMBUtil.readInt2(buf, bi);
            bi += 2;
            this.access = SMBUtil.readInt4(buf, bi);
            bi += 4;
            this.sid = new SID(buf, bi);
            return size;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		// BO & 0b10100 == 0b00100 -> at = B[0:1]
    
    		// BI fields rename as follows:
    		// less than            : lt BI%4==0 && test == t
    		// less than or equal   : le BI%4==1 && test == f
    		// equal 		: eq BI%4==2 && test == t
    		// greater than or equal: ge BI%4==0 && test == f
    		// greater than		: gt BI%4==1 && test == t
    		// not less than	: nl BI%4==0 && test == f
    		// not equal		: ne BI%4==2 && test == f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule_test.go

    	// check that v2, v3, v4 is sorted after v5
    	var ai, bi, ci, si int
    	for i, v := range order {
    		switch v.ID {
    		case 2:
    			ai = i
    		case 3:
    			bi = i
    		case 4:
    			ci = i
    		case 5:
    			si = i
    		}
    	}
    	if ai < si || bi < si || ci < si {
    		t.Logf("Func: %s", fun.f)
    		t.Errorf("store order is wrong: got %v, want v2 v3 v4 after v5", order)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    func (b blocksByStart) Len() int      { return len(b) }
    func (b blocksByStart) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
    func (b blocksByStart) Less(i, j int) bool {
    	bi, bj := b[i], b[j]
    	return bi.StartLine < bj.StartLine || bi.StartLine == bj.StartLine && bi.StartCol < bj.StartCol
    }
    
    // Boundary represents the position in a source file of the beginning or end of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_buildvcs.txt

    package main
    -- example_test.go --
    package main
    
    import (
    	"runtime/debug"
    	"strings"
    	"testing"
    )
    
    func TestDetail(t *testing.T) {
    	bi, ok := debug.ReadBuildInfo()
    	if !ok {
    		t.Fatal("BuildInfo not present")
    	}
    	for _, s := range bi.Settings {
    		if strings.HasPrefix(s.Key, "vcs.") {
    			t.Fatalf("unexpected VCS setting: %s=%s", s.Key, s.Value)
    		}
    	}
    }
    -- testonly/main_test.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/smb1/util/Encdec.java

            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: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
Back to top