Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for gint (0.1 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. gradle/verification-metadata.xml

          <component group="com.android.tools.lint" name="lint" version="26.0.0">
             <artifact name="lint-26.0.0.jar">
                <sha256 value="949a972800e353f51bc9c18410a029ed2b8176639ca307cc0d5c93f36e81dc1f" reason="Artifact is not signed"/>
             </artifact>
          </component>
          <component group="com.android.tools.lint" name="lint-api" version="26.0.0">
             <artifact name="lint-api-26.0.0.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    }
    
    type arenaIdx uint
    
    // l1 returns the "l1" portion of an arenaIdx.
    //
    // Marked nosplit because it's called by spanOf and other nosplit
    // functions.
    //
    //go:nosplit
    func (i arenaIdx) l1() uint {
    	if arenaL1Bits == 0 {
    		// Let the compiler optimize this away if there's no
    		// L1 map.
    		return 0
    	} else {
    		return uint(i) >> arenaL1Shift
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. go.sum

    golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
    golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
    golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  9. tensorflow/BUILD

    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    # TODO(b/159007891) Remove this package once StructuredTensor is exported.
    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    # LINT.ThenChange(copy.bara.sky)
    
    filegroup(
        name = "intel_binary_blob",
        data = if_mkl_ml(
            [
                "@local_xla//xla/tsl/mkl:intel_binary_blob",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/go.sum

    golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc/go.mod h1:V1LtkGg67GoY2N1AnLN78QLrzxkLyJw7RJb1gzOOz9w=
    golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
    golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
    golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top