Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for blocked (0.29 sec)

  1. cmd/erasure-object.go

    	}
    
    	return dfi.ToObjectInfo(bucket, object, opts.Versioned || opts.VersionSuspended), nil
    }
    
    // Send the successful but partial upload/delete, however ignore
    // if the channel is blocked by other items.
    func (er erasureObjects) addPartial(bucket, object, versionID string) {
    	globalMRFState.addPartialOp(partialOperation{
    		bucket:    bucket,
    		object:    object,
    		versionID: versionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      buffer_type file
      buffer_path /var/log/fluentd-buffers/kubernetes.containers.buffer
      # Set queue_full action to block because we want to pause gracefully
      # in case of the off-the-limits load instead of throwing an exception
      buffer_queue_full_action block
      # Set the chunk limit conservatively to avoid exceeding the recommended
      # chunk size of 5MB per write request.
      buffer_chunk_limit 512k
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	    calling runtime.SetBlockProfileRate with n.
    	    See 'go doc runtime.SetBlockProfileRate'.
    	    The profiler aims to sample, on average, one blocking event every
    	    n nanoseconds the program spends blocked. By default,
    	    if -test.blockprofile is set without this flag, all blocking events
    	    are recorded, equivalent to -test.blockprofilerate=1.
    
    	-coverprofile cover.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// from resource lists, and not reachable by name) after the time in this field, once the
    	// finalizers list is empty. As long as the finalizers list contains items, deletion is blocked.
    	// Once the deletionTimestamp is set, this value may not be unset or be set further into the
    	// future, although it may be shortened or the resource may be deleted prior to this time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top