Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for blocked (0.13 sec)

  1. src/cmd/link/internal/loader/loader.go

    		// Note that data symbols are "ABI0", which maps to version 0.
    		v = abiver
    	} else {
    		log.Fatalf("invalid symbol ABI: %d", abi)
    	}
    	return v
    }
    
    // A list of blocked linknames. Some linknames are allowed only
    // in specific packages. This maps symbol names to allowed packages.
    // If a name is not in this map, it is allowed iff the definition
    // has a linkname (push).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	OptDcl []*ir.Name
    
    	// Filled in by the user. Translates Block and Value ID to PC.
    	//
    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			// already generated, run through the outboundListenerEntry map and set
    			// the locked bit to true.
    			// buildSidecarOutboundListener will not add/merge
    			// any HTTP/TCP listener if there is already a outboundListenerEntry
    			// with locked bit set to true
    			for _, e := range listenerMap {
    				e.locked = true
    			}
    
    			for _, service := range services {
    				saddress := service.GetAddressForProxy(node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

                assert dep.reason == reason
            }
    
            where:
            reason                                                          | strict
            "dependency was locked to version '1.1'"                        | true
            "dependency was locked to version '1.1' (update/lenient mode)"  | false
        }
    
        private ResolverResults buildDependenciesResolved() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        private String getLockReason(boolean strict, String lockedVersion) {
            if (strict) {
                return "dependency was locked to version '" + lockedVersion + "'";
            }
            return "dependency was locked to version '" + lockedVersion + "' (update/lenient mode)";
        }
    
        @Override
        public DomainObjectContext getDomainObjectContext() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    		if idx/pagesPerArena >= uintptr(len(arenas)) {
    			// Page reclaiming is done.
    			h.reclaimIndex.Store(1 << 63)
    			break
    		}
    
    		if !locked {
    			// Lock the heap for reclaimChunk.
    			lock(&h.lock)
    			locked = true
    		}
    
    		// Scan this chunk.
    		nfound := h.reclaimChunk(arenas, idx, pagesPerReclaimerChunk)
    		if nfound <= npage {
    			npage -= nfound
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    		                          </Rule>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		{ // Using ExpiredObjectAllVersions element with an object locked bucket
    			inputConfig: `<LifecycleConfiguration>
                                            <Rule>
                                              <ID>ExpiredObjectAllVersions with object locking</ID>
    		                          <Filter>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top