Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for L1 (0.03 sec)

  1. src/runtime/mheap.go

    	ri := arenaIndex(p)
    	if arenaL1Bits == 0 {
    		// If there's no L1, then ri.l1() can't be out of bounds but ri.l2() can.
    		if ri.l2() >= uint(len(mheap_.arenas[0])) {
    			return nil
    		}
    	} else {
    		// If there's an L1, then ri.l1() can be out of bounds but ri.l2() can't.
    		if ri.l1() >= uint(len(mheap_.arenas)) {
    			return nil
    		}
    	}
    	l2 := mheap_.arenas[ri.l1()]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    func.func @testResourceApplyFtrl(%var: tensor<*x!tf_type.resource>, %accum: tensor<*x!tf_type.resource>, %linear: tensor<*x!tf_type.resource>, %grad: tensor<*xf32>, %lr: tensor<*xf32>, %l1: tensor<*xf32>, %l2: tensor<*xf32>, %lr_power: tensor<*xf32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    type LayerOne struct {
    	XMLName Name `xml:"l1"`
    
    	Value     *float64 `xml:"value,omitempty"`
    	*LayerTwo `xml:",omitempty"`
    }
    
    type LayerTwo struct {
    	ValueTwo *int `xml:"value_two,attr,omitempty"`
    }
    
    func TestMarshalZeroValue(t *testing.T) {
    	proofXml := `<l1><value>1.2345</value></l1>`
    	var l1 LayerOne
    	err := Unmarshal([]byte(proofXml), &l1)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// The number of bits in a heap address, the size of heap
    	// arenas, and the L1 and L2 arena map sizes are related by
    	//
    	//   (1 << addr bits) = arena size * L1 entries * L2 entries
    	//
    	// Currently, we balance these as follows:
    	//
    	//       Platform  Addr bits  Arena size  L1 entries   L2 entries
    	// --------------  ---------  ----------  ----------  -----------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'": 3,
    			},
    		},
    		{name: "escaped strings",
    			obj:    objs("l1\nl2", "l1\nl2"),
    			schema: schemas(stringType, stringType),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "'l1\\nl2'"): 11,
    				"self.val1 == '''l1\nl2'''": 3,
    			},
    		},
    		{name: "bytes",
    			obj:    objs("QUI=", "QUI="),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z"/><circle cx="3.7" cy="10.5" r=".8"/></svg>',tablet:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	sg := mheap_.sweepgen
    
    	// Find the arena and page index into that arena for this shard.
    	ai := mheap_.markArenas[shard/(pagesPerArena/pagesPerSpanRoot)]
    	ha := mheap_.arenas[ai.l1()][ai.l2()]
    	arenaPage := uint(uintptr(shard) * pagesPerSpanRoot % pagesPerArena)
    
    	// Construct slice of bitmap which we'll iterate over.
    	specialsbits := ha.pageSpecials[arenaPage/8:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	// time here is pretty trivial.
    	lock(&mheap_.lock)
    	arenas := mheap_.allArenas
    	unlock(&mheap_.lock)
    	for _, ai := range arenas {
    		ha := mheap_.arenas[ai.l1()][ai.l2()]
    		clear(ha.pageMarks[:])
    	}
    
    	work.bytesMarked = 0
    	work.initialHeapLive = gcController.heapLive.Load()
    }
    
    // Hooks for other packages
    
    var poolcleanup func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

        .lit, .atn { color: #6a9fb5 !important; }
        .pun, .pln,
        .opn, .clo { color: #d0d0d0 !important; }
        .dec, .var { color: #aa759f !important; }
    }
    
    .dark-mode {
    	li.L1,
    	li.L3,
    	li.L5,
    	li.L7,
    	li.L9 {
    		background: #111 !important;
    	}
    }
    
    /* DPE University button*/
    /* CSS */
    .badge-wrapper {
        padding-top: 0px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. hack/tools/go.sum

    github.com/go-toolsmith/pkgload v1.2.2 h1:0CtmHq/02QhxcF7E9N5LIFcYFsMR5rdovfqTtRKkgIk=
    github.com/go-toolsmith/pkgload v1.2.2/go.mod h1:R2hxLNRKuAsiXCo2i5J6ZQPhnPMOVtU+f0arbFPWCus=
    github.com/go-toolsmith/strparse v1.0.0/go.mod h1:YI2nUKP9YGZnL/L1/DLFBfixrcjslWct4wyljWhSRy8=
    github.com/go-toolsmith/strparse v1.1.0 h1:GAioeZUK9TGxnLS+qfdqNbA4z0SSm5zVNtCQiyP2Bvw=
    github.com/go-toolsmith/strparse v1.1.0/go.mod h1:7ksGy58fsaQkGQlY8WVoBFNyEPMGuJin1rfoPS4lBSQ=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top