Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for blocked (0.18 sec)

  1. 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 (0)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				}
    			},
    
    			lock : function () {
    				this.data.core.locked = true;
    				this.get_container().children("ul").addClass("jstree-locked").css("opacity","0.7");
    				this.__callback({});
    			},
    			unlock : function () {
    				this.data.core.locked = false;
    				this.get_container().children("ul").removeClass("jstree-locked").css("opacity","1");
    				this.__callback({});
    			},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (b PSAPI_WORKING_SET_EX_BLOCK) Node() uint64 {
    	return b.intField(16, 6)
    }
    
    // Locked returns the locked status of this page.
    // If this bit is 1, the virtual page is locked in physical memory.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Locked() bool {
    	return (b & (1 << 22)) == 1
    }
    
    // LargePage returns the large page status of this page.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. 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)
Back to top