Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for L1 (0.03 sec)

  1. src/cmd/compile/internal/walk/assign.go

    func appendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {
    	walkAppendArgs(n, init)
    
    	l1 := n.Args[0]
    	l2 := n.Args[1]
    	l2 = cheapExpr(l2, init)
    	n.Args[1] = l2
    
    	var nodes ir.Nodes
    
    	// var s []T
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes.Append(ir.NewAssignStmt(base.Pos, s, l1)) // s = l1
    
    	elemtype := s.Type().Elem()
    
    	// Decompose slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

            assert action1 != Action1
            def action2 = cl.loadClass(Action2.name)
            assert action2 != Action2
    
            expect:
            def l1 = withConnection {
                it.action(action1.getConstructor().newInstance())
                    .run()
            }
            l1 == ["not broken 1"]
            def l2 = withConnection {
                it.action(action2.getConstructor().newInstance())
                    .run()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/runtime/mranges.go

    // diff returns the amount of bytes in between the
    // 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)
  4. src/net/unixsock_test.go

    	})
    
    	t.Run("FileListener/SetUnlinkOnClose(true)", func(t *testing.T) {
    		l := listen(t)
    		f, _ := l.File()
    		l1, _ := FileListener(f)
    		checkExists(t, "after FileListener")
    		l1.(*UnixListener).SetUnlinkOnClose(true)
    		f.Close()
    		checkExists(t, "after File close")
    		l1.Close()
    		checkNotExists(t, "after FileListener close")
    		l.Close()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/MetadataProbe.java

            mv.visitVarInsn(ALOAD, 0);
            mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false);
            mv.visitInsn(RETURN);
            Label l1 = new Label();
            mv.visitLabel(l1);
            mv.visitLocalVariable("this", "LJavaProbe;", null, l0, l1, 0);
            mv.visitMaxs(1, 1);
            mv.visitEnd();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                project.extensions.create("l1", Extension, "l1")
                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/mcheckmark.go

    //
    // The world must be stopped.
    func startCheckmarks() {
    	assertWorldStopped()
    
    	// Clear all checkmarks.
    	for _, ai := range mheap_.allArenas {
    		arena := mheap_.arenas[ai.l1()][ai.l2()]
    		bitmap := arena.checkmarks
    
    		if bitmap == nil {
    			// Allocate bitmap on first use.
    			bitmap = (*checkmarksMap)(persistentalloc(unsafe.Sizeof(*bitmap), 0, &memstats.gcMiscSys))
    			if bitmap == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    func chunkPageIndex(p uintptr) uint {
    	return uint(p % pallocChunkBytes / pageSize)
    }
    
    // l1 returns the index into the first level of (*pageAlloc).chunks.
    func (i chunkIdx) l1() uint {
    	if pallocChunksL1Bits == 0 {
    		// Let the compiler optimize this away if there's no
    		// L1 map.
    		return 0
    	} else {
    		return uint(i) >> pallocChunksL1Shift
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. pilot/test/xdstest/validate.go

    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    		// This hack skips these ones, as they will be processed later
    		if hcm := ExtractHTTPConnectionManager(t, l1); strings.HasPrefix(hcm.GetStatPrefix(), "inbound_") && l.Name != "virtualInbound" {
    			continue
    		}
    
    		s := Dump(t, l1.FilterChainMatch)
    		if i2, ok := check[s]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/config/resource/metadata_test.go

    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName:    NewFullName("ns1", "rs1"),
    		Version:     Version("v1"),
    		Annotations: map[string]string{"foo": "bar"},
    		Labels:      map[string]string{"l1": "l2"},
    	}
    
    	c := m.Clone()
    	g.Expect(m).To(Equal(c))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top