Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for hinv (0.24 sec)

  1. src/runtime/malloc.go

    			return nil, 0
    		}
    
    		// Create new hints for extending this region.
    		hint := (*arenaHint)(h.arenaHintAlloc.alloc())
    		hint.addr, hint.down = uintptr(v), true
    		hint.next, mheap_.arenaHints = mheap_.arenaHints, hint
    		hint = (*arenaHint)(h.arenaHintAlloc.alloc())
    		hint.addr = uintptr(v) + size
    		hint.next, mheap_.arenaHints = mheap_.arenaHints, hint
    	}
    
    	// Check for bad pointers or pointers we can't use.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    	return
    }
    
    // exprWithHint typechecks expression e and initializes x with the expression value;
    // hint is the type of a composite literal element.
    // If an error occurred, x.mode is set to invalid.
    func (check *Checker) exprWithHint(x *operand, e ast.Expr, hint Type) {
    	assert(hint != nil)
    	check.rawExpr(nil, x, e, hint, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/runtime/map.go

    	if h.extra.overflow == nil {
    		h.extra.overflow = new([]*bmap)
    	}
    }
    
    func makemap64(t *maptype, hint int64, h *hmap) *hmap {
    	if int64(int(hint)) != hint {
    		hint = 0
    	}
    	return makemap(t, int(hint), h)
    }
    
    // makemap_small implements Go map creation for make(map[k]v) and
    // make(map[k]v, hint) when hint is known to be at most bucketCnt
    // at compile time and the map needs to be allocated on the heap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    		o.podMaxInUnschedulablePodsDuration = duration
    	}
    }
    
    // QueueingHintMapPerProfile is keyed with profile name, valued with queueing hint map registered for the profile.
    type QueueingHintMapPerProfile map[string]QueueingHintMap
    
    // QueueingHintMap is keyed with ClusterEvent, valued with queueing hint functions registered for the event.
    type QueueingHintMap map[framework.ClusterEvent][]*QueueingHintFunction
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	return
    }
    
    // exprWithHint typechecks expression e and initializes x with the expression value;
    // hint is the type of a composite literal element.
    // If an error occurred, x.mode is set to invalid.
    func (check *Checker) exprWithHint(x *operand, e syntax.Expr, hint Type) {
    	assert(hint != nil)
    	check.rawExpr(nil, x, e, hint, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            } else if (userSuppliedConfigurationProcessorCount == 1) {
                //
                // Run the user supplied ConfigurationProcessor
                //
                for (Entry<String, ConfigurationProcessor> entry : configurationProcessors.entrySet()) {
                    String hint = entry.getKey();
                    if (!hint.equals(SettingsXmlConfigurationProcessor.HINT)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            'ASCII'             | 'keys'    | null
            'ASCII with header' | 'keys'    | 'some comment showing we can have arbitrary text'
        }
    
        def "by default, prioritizes gpg format over ascii-armored when #hint"() {
            // key will not be published on the server fixture but available locally
            def keyring = newKeyRing()
            def pkId = toHexString(keyring.publicKey.fingerprint)
    
            createMetadataFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	dsc.expectations.DeletionObserved(logger, dsKey)
    	dsc.enqueueDaemonSet(ds)
    }
    
    func (dsc *DaemonSetsController) addNode(logger klog.Logger, obj interface{}) {
    	// TODO: it'd be nice to pass a hint with these enqueues, so that each ds would only examine the added node (unless it has other work to do, too).
    	dsList, err := dsc.dsLister.List(labels.Everything())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    				}
    
    			}
    		})
    	}
    }
    
    func TestGetTopologyHints(t *testing.T) {
    	testCases := []testMemoryManager{
    		{
    			description: "Successful hint generation",
    			policyName:  policyTypeStatic,
    			machineInfo: returnMachineInfo(),
    			reserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 1 * gb,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		}
    
    		pp := s.Call(v)
    
    		// Convert the call into a blrl with hint this is not a subroutine return.
    		// The full bclrl opcode must be specified when passing a hint.
    		pp.As = ppc64.ABCL
    		pp.From.Type = obj.TYPE_CONST
    		pp.From.Offset = ppc64.BO_ALWAYS
    		pp.Reg = ppc64.REG_CR0LT // The preferred value if BI is ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top