Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for St (0.06 sec)

  1. cmd/metrics-v2.go

    					Type:      counterMetric,
    				},
    				VariableLabels: map[string]string{"target_id": st.ID.ID, "target_name": st.ID.Name},
    				Value:          float64(st.FailedRequests),
    			})
    		}
    
    		// Audit and system:
    		audit := logger.CurrentStats()
    		for id, st := range audit {
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    					Namespace: minioNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    		// we need them refreshed periodically.
    		//
    		// This is based on the code from newSDSService, but customized to have explicit rotation.
    		go func() {
    			st := a.secretCache
    			st.RegisterSecretHandler(func(resourceName string) {
    				// The secret handler is called when a secret should be renewed, after invalidating the cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	numSites := len(info.Sites)
    	for b, stat := range sinfo.BucketStats {
    		for dID, st := range stat {
    			if st.TagMismatch ||
    				st.VersioningConfigMismatch ||
    				st.OLockConfigMismatch ||
    				st.SSEConfigMismatch ||
    				st.PolicyMismatch ||
    				st.ReplicationCfgMismatch ||
    				st.QuotaCfgMismatch ||
    				opts.Entity == madmin.SRBucketEntity {
    				if _, ok := info.BucketStats[b]; !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    				s, existed := st.hashed64Syms[h64]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashed64Syms[h64] = ss }
    		} else {
    			checkHash = func() (symAndSize, bool) {
    				h = r.Hash(li - uint32(r.ndef+r.nhashed64def))
    				s, existed := st.hashedSyms[*h]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashedSyms[*h] = ss }
    		}
    		siz := osym.Siz()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		ssa.OpPPC64LoweredAtomicStore32,
    		ssa.OpPPC64LoweredAtomicStore64:
    		// SYNC or LWSYNC
    		// MOVB/MOVW/MOVD arg1,(arg0)
    		st := ppc64.AMOVD
    		switch v.Op {
    		case ssa.OpPPC64LoweredAtomicStore8:
    			st = ppc64.AMOVB
    		case ssa.OpPPC64LoweredAtomicStore32:
    			st = ppc64.AMOVW
    		}
    		arg0 := v.Args[0].Reg()
    		arg1 := v.Args[1].Reg()
    		// If AuxInt == 0, LWSYNC (Store-Release), else SYNC
    		// SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. cmd/peer-rest-client.go

    	if gridConn == nil {
    		return
    	}
    
    	payload, err := json.Marshal(traceOpts)
    	if err != nil {
    		bugLogIf(ctx, err)
    		return
    	}
    
    	st, err := gridConn.NewStream(ctx, grid.HandlerTrace, payload)
    	if err != nil {
    		return
    	}
    	st.Results(func(b []byte) error {
    		select {
    		case traceCh <- b:
    		default:
    			// Do not block on slow receivers.
    			// Just recycle the buffer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    		if at.Len == 1 {
    			return p.tryRegAssignArg(at.Elem, offset) // TODO fix when runtime is fully commoned up w/ abi.Type
    		}
    	case abi.Struct:
    		st := (*structtype)(unsafe.Pointer(t))
    		for i := range st.Fields {
    			f := &st.Fields[i]
    			if !p.tryRegAssignArg(f.Typ, offset+f.Offset) {
    				return false
    			}
    		}
    		return true
    	}
    	// Pointer-sized types such as maps and channels are currently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    		t.Run(tt.family, func(t *testing.T) {
    			for _, st := range tt.subtests {
    				t.Run(st.p.String(), func(t *testing.T) {
    					// Ensure st.ip is not mutated.
    					orig := st.ip.String()
    
    					p, err := st.ip.Prefix(int(st.bits))
    					if st.ok && err != nil {
    						t.Fatalf("failed to produce prefix: %v", err)
    					}
    					if !st.ok && err == nil {
    						t.Fatal("expected an error, but none occurred")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

    		}
    
    		if uint32(gid) == st.Gid || isGroupMember(int(st.Gid)) {
    			fmode = (st.Mode >> 3) & 7
    		} else {
    			fmode = st.Mode & 7
    		}
    	}
    
    	if fmode&mode == mode {
    		return nil
    	}
    
    	return EACCES
    }
    
    //sys	fchmodat(dirfd int, path string, mode uint32) (err error)
    //sys	fchmodat2(dirfd int, path string, mode uint32, flags int) (err error) = _SYS_fchmodat2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES128-SHA256

    00000080  a0 d2 eb f4 30 09 06 07  2a 86 48 ce 3d 04 01 30  |....0...*.H.=..0|
    00000090  45 31 0b 30 09 06 03 55  04 06 13 02 41 55 31 13  |E1.0...U....AU1.|
    000000a0  30 11 06 03 55 04 08 13  0a 53 6f 6d 65 2d 53 74  |0...U....Some-St|
    000000b0  61 74 65 31 21 30 1f 06  03 55 04 0a 13 18 49 6e  |ate1!0...U....In|
    000000c0  74 65 72 6e 65 74 20 57  69 64 67 69 74 73 20 50  |ternet Widgits P|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top