Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for L1 (0.02 sec)

  1. tools/bug-report/pkg/cluster/cluster_test.go

    					Name: "in-test1",
    					Labels: map[string]string{
    						"l1": "lv1",
    					},
    					Annotations: map[string]string{
    						"a1": "av1",
    						"a2": "av1",
    					},
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Pods: []string{"in-"},
    						Labels: map[string]string{
    							"l1": "lv1",
    							"l2": "lv2",
    						},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/math/pow_s390x.s

    	BR	L2
    L9:
    	WFCEDBS	V0, V0, V4
    	BVS	L35
    	FMOVD	F2, F1
    	BR	L1
    L46:
    	WORD	$0xB3130040	//lcdbr	%f4,%f0
    	BR	L3
    L44:
    	WORD	$0xB3130030	//lcdbr	%f3,%f0
    	BR	L7
    L35:
    	FMOVD	F0, F1
    	BR	L1
    L26:
    	FMOVD	8(R9), F1
    	BR	L1
    L34:
    	FMOVD	8(R9), F4
    L19:
    	LTDBR	F6, F6
    	BLEU	L47
    L18:
    	WFMDB	V4, V5, V1
    	BR	L1
    L5:
    	RISBGZ	$33, $50, $63, R3, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. operator/pkg/util/merge_iop_test.go

    		t.Fatal(err)
    	}
    }
    
    func TestOverlayIOPIngressGatewayLabel(t *testing.T) {
    	l1, err := os.ReadFile("testdata/yaml/input/yaml_layer1.yaml")
    	if err != nil {
    		t.Fatal(err)
    	}
    	l2, err := os.ReadFile("testdata/yaml/input/yaml_layer2.yaml")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if _, err := OverlayIOP(string(l1), string(l2)); err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/debuglog.go

    	// global pool.
    	if l == nil {
    		allp := (*uintptr)(unsafe.Pointer(&allDloggers))
    		all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
    		for l1 := all; l1 != nil; l1 = l1.allLink {
    			if l1.owned.Load() == 0 && l1.owned.CompareAndSwap(0, 1) {
    				l = l1
    				break
    			}
    		}
    	}
    
    	// If that failed, allocate a new logger.
    	if l == nil {
    		// Use sysAllocOS instead of sysAlloc because we want to interfere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/go/token/position_test.go

    		checkPos(t, "1. PositionFor unadjusted", got1, want)
    		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)
Back to top