Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for blocked (0.16 sec)

  1. cmd/iam-store.go

    			res[cred.ParentUser] = ParentUserInfo{
    				subClaimValue: subClaimValue,
    				roleArns:      set.CreateStringSet(roleArn),
    			}
    		}
    	}
    
    	return res
    }
    
    // Assumes store is locked by caller. If users is empty, returns all user mappings.
    func (store *IAMStoreSys) listUserPolicyMappings(cache *iamCache, users []string,
    	userPredicate func(string) bool,
    ) []madmin.UserPolicyEntities {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	// mask of registers used since the start of the current block
    	usedSinceBlockStart regMask
    
    	// mask of registers used in the current instruction
    	tmpused regMask
    
    	// current block we're working on
    	curBlock *Block
    
    	// cache of use records
    	freeUseRecords *use
    
    	// endRegs[blockid] is the register state at the end of each block.
    	// encoded as a set of endReg records.
    	endRegs [][]endReg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    // If the header's and block's size are "small enough" and the block is "simple enough",
    // the block is printed on the current line, without line breaks, spaced from the header
    // by sep. Otherwise the block's opening "{" is printed on the current line, followed by
    // lines for the block's statements and its closing "}".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "locked lock was unmapped ",
    	73:  "facility is not active",
    	74:  "multihop attempted",
    	77:  "not a data message",
    	78:  "file name too long",
    	79:  "value too large for defined data type",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "ELOCKUNMAPPED", "locked lock was unmapped "},
    	{73, "ENOTACTIVE", "facility is not active"},
    	{74, "EMULTIHOP", "multihop attempted"},
    	{77, "EBADMSG", "not a data message"},
    	{78, "ENAMETOOLONG", "file name too long"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		}},
    		{`package p6; func _() { { var x int; _ = x } }`, []string{
    			"file:", "func:", "block:x",
    		}},
    		{`package p7; func _() { if true {} }`, []string{
    			"file:", "func:", "if:", "block:",
    		}},
    		{`package p8; func _() { if x := 0; x < 0 { y := x; _ = y } }`, []string{
    			"file:", "func:", "if:x", "block:y",
    		}},
    		{`package p9; func _() { switch x := 0; x {} }`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    		work = work[:len(work)-1]
    		parent := idom[node.block.ID]
    		branch := getBranch(sdom, parent, node.block)
    
    		switch node.state {
    		case descend:
    			ft.checkpoint()
    
    			// Entering the block, add the block-depending facts that we collected
    			// at the beginning: induction variables and lens/caps of slices.
    			if iv, ok := indVars[node.block]; ok {
    				addIndVarRestrictions(ft, parent, iv)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    			// Tiny allocator combines several tiny allocation requests
    			// into a single memory block. The resulting memory block
    			// is freed when all subobjects are unreachable. The subobjects
    			// must be noscan (don't have pointers), this ensures that
    			// the amount of potentially wasted memory is bounded.
    			//
    			// Size of the memory block used for combining (maxTinySize) is tunable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// resourceModel contains the information about available and allocated resources when using
    	// structured parameters and the pod needs this information.
    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top