Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for L2 (0.15 sec)

  1. test/typeparam/list2.go

    	// Bigger list
    	l2 := _New[int]()
    	e2 := l2.PushFront(2)
    	e1 := l2.PushFront(1)
    	e3 := l2.PushBack(3)
    	e4 := l2.PushBack(600)
    	checkListPointers(l2, []*(_Element[int]){e1, e2, e3, e4})
    
    	l2.Remove(e2)
    	checkListPointers(l2, []*(_Element[int]){e1, e3, e4})
    
    	l2.MoveToFront(e3) // move from middle
    	checkListPointers(l2, []*(_Element[int]){e3, e1, e4})
    
    	l2.MoveToFront(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    	l2 := typecheck.Conv(n.Args[1].(*ir.MakeExpr).Len, types.Types[types.TINT])
    	l2 = typecheck.Expr(l2)
    	n.Args[1] = l2 // walkAppendArgs expects l2 in n.List.Second().
    
    	walkAppendArgs(n, init)
    
    	l1 := n.Args[0]
    	l2 = n.Args[1] // re-read l2, as it may have been updated by walkAppendArgs
    
    	var nodes []ir.Node
    
    	// if l2 >= 0 (likely happens), do nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe.go

    	c = (v.l1 + c) >> 51
    	c = (v.l2 + c) >> 51
    	c = (v.l3 + c) >> 51
    	c = (v.l4 + c) >> 51
    
    	// If v < 2^255 - 19 and c = 0, this will be a no-op. Otherwise, it's
    	// effectively applying the reduction identity to the carry.
    	v.l0 += 19 * c
    
    	v.l1 += v.l0 >> 51
    	v.l0 = v.l0 & maskLow51Bits
    	v.l2 += v.l1 >> 51
    	v.l1 = v.l1 & maskLow51Bits
    	v.l3 += v.l2 >> 51
    	v.l2 = v.l2 & maskLow51Bits
    	v.l4 += v.l3 >> 51
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/runtime/mranges.go

    // two offAddrs.
    func (l1 offAddr) diff(l2 offAddr) uintptr {
    	return l1.a - l2.a
    }
    
    // lessThan returns true if l1 is less than l2 in the offset
    // address space.
    func (l1 offAddr) lessThan(l2 offAddr) bool {
    	return (l1.a - arenaBaseOffset) < (l2.a - arenaBaseOffset)
    }
    
    // lessEqual returns true if l1 is less than or equal to l2 in
    // the offset address space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    // TODO(kramm): Move this pattern to canonicalize.td?
    def DecomposeResourceApplyFtrl : Pat<
      (TF_ResourceApplyFtrlOp $var, $accum, $linear, $grad, $lr, $l1, $l2,
         $lr_power, $use_locking, $multiply_linear_by_lr),
      (TF_ResourceApplyFtrlV2Op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         (TF_ConstOp (GetScalarOfType<0> $lr_power)), $lr_power, $use_locking, $multiply_linear_by_lr)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                project.l1.extensions.create("l2", Extension, "l2")
                project.l1.l2.extensions.create("l3", Extension, "l3")
    
                task test {
                    doLast {
                        assert project.l1.name == "l1"
                        assert project.l1.l2.name == "l2"
                        assert project.l1.l2.l3.name == "l3"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    func (p *pageAlloc) tryChunkOf(ci chunkIdx) *pallocData {
    	l2 := p.chunks[ci.l1()]
    	if l2 == nil {
    		return nil
    	}
    	return &l2[ci.l2()]
    }
    
    // chunkOf returns the chunk at the given chunk index.
    //
    // The chunk index must be valid or this method may throw.
    func (p *pageAlloc) chunkOf(ci chunkIdx) *pallocData {
    	return &p.chunks[ci.l1()][ci.l2()]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/go/token/position_test.go

    		checkPos(t, "1. PositionFor adjusted", got2, want)
    		checkPos(t, "1. Position", got3, want)
    	}
    
    	// manually add //line info on lines l1, l2
    	const l1, l2 = 5, 7
    	f.AddLineInfo(f.lines[l1-1], "", 100)
    	f.AddLineInfo(f.lines[l2-1], "bar", 3)
    
    	// unadjusted position info must remain unchanged
    	for i, offs := range f.lines {
    		got1 := f.PositionFor(f.Pos(offs), false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        }
    
    
        private static boolean pathNamesPossiblyEqual ( String path1, String path2 ) {
            int p1, p2, l1, l2;
    
            // if unsure return this method returns true
    
            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
            if ( l1 > 1 && path1.charAt(p1 + 1) == '.' )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/cluster/cluster_test.go

    					},
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Pods: []string{"in-"},
    						Labels: map[string]string{
    							"l1": "lv1",
    							"l2": "lv2",
    						},
    					},
    				},
    			},
    			false,
    		},
    		{
    			"tested label skip",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "in-test1",
    					Labels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top