Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for L1 (0.08 sec)

  1. src/internal/types/testdata/check/builtins1.go

    	copy(y /* ERROR "expects slice arguments" */ , x)
    }
    
    func _[T ~[]byte|~string](x T, y []byte) {
    	copy(x /* ERROR "expects slice arguments" */ , y)
    	copy(y, x)
    }
    
    type L0 []int
    type L1 []int
    
    func _[T L0 | L1](x, y T) {
    	copy(x, y)
    }
    
    // delete
    
    type M0 interface{ int }
    type M1 interface{ map[string]int }
    type M2 interface { map[string]int | map[string]float64 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog_test.go

    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    	fc := xdstest.ExtractFilterChain("virtualOutbound-blackhole", xdstest.ExtractListener("virtualOutbound", l1))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver_test.go

    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	var files []*syntax.File
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. src/go/types/resolver_test.go

    		}
    		`,
    		`
    		package p
    		type S struct{}
    		func (T) _() {}
    		func (T) _() {}
    		`,
    		`
    		package p
    		func _() {
    		L0:
    		L1:
    			goto L0
    			for {
    				goto L1
    			}
    			if true {
    				goto L2
    			}
    		L2:
    		}
    		`,
    	}
    
    	pkgnames := []string{
    		"fmt",
    		"math",
    	}
    
    	// parse package files
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc_32bit.go

    )
    
    const (
    	// The number of levels in the radix tree.
    	summaryLevels = 4
    
    	// Constants for testing.
    	pageAlloc32Bit = 1
    	pageAlloc64Bit = 0
    
    	// Number of bits needed to represent all indices into the L1 of the
    	// chunks map.
    	//
    	// See (*pageAlloc).chunks for more details. Update the documentation
    	// there should this number change.
    	pallocChunksL1Bits = 0
    )
    
    // See comment in mpagealloc_64bit.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    			return []string{"hg", "branches", "-c", "-q"}
    		},
    		branchRE:      re(`(?m)^[^\n]+$`),
    		badLocalRevRE: re(`(?m)^(tip)$`),
    		statLocal: func(rev, remote string) []string {
    			return []string{"hg", "log", "-l1", "-r", rev, "--template", "{node} {date|hgdate} {tags}"}
    		},
    		parseStat: hgParseStat,
    		fetch:     []string{"hg", "pull", "-f"},
    		latest:    "tip",
    		readFile: func(rev, file, remote string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. 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)
  9. src/go/printer/printer_test.go

    			t.Errorf("got ident %s; want %s", i2.Name, i1.Name)
    		}
    
    		// here we care about the relative (line-directive adjusted) positions
    		l1 := fset.Position(i1.Pos()).Line
    		l2 := fset.Position(i2.Pos()).Line
    		if l2 != l1 {
    			t.Errorf("got line %d; want %d for %s", l2, l1, i1.Name)
    		}
    	}
    
    	if t.Failed() {
    		t.Logf("\n%s", buf.Bytes())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		      }							      \
    -		    __result; }))
    -
    -# define __strcmp_cg(s1, s2, l1) \
    -  (__extension__ ({ const unsigned char *__s2 =				      \
    -		      (const unsigned char *) (const char *) (s2);	      \
    -		    int __result =					      \
    -		      (((const unsigned char *) (const char *) (s1))[0]	      \
    -		       - __s2[0]);					      \
    -		    if (l1 > 0 && __result == 0)			      \
    -		      {							      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
Back to top