Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for nlist (0.05 sec)

  1. src/cmd/internal/obj/plist.go

    	"cmd/internal/src"
    	"fmt"
    	"internal/abi"
    	"strings"
    )
    
    type Plist struct {
    	Firstpc *Prog
    	Curfn   Func
    }
    
    // ProgAlloc is a function that allocates Progs.
    // It is used to provide access to cached/bulk-allocated Progs to the assemblers.
    type ProgAlloc func() *Prog
    
    func Flushplist(ctxt *Link, plist *Plist, newprog ProgAlloc) {
    	if ctxt.Pkgpath == "" {
    		panic("Flushplist called without Pkgpath")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. test/typeparam/issue50485.dir/a.go

    			return r(a1, a2)
    		})
    	}
    }
    
    type HList interface {
    	sealed()
    }
    
    // Header is constrains interface type,  enforce Head type of Cons is HT
    type Header[HT any] interface {
    	HList
    	Head() HT
    }
    
    // Cons means H :: T
    // zero value of Cons[H,T] is not allowed.
    // so Cons defined as interface type
    type Cons[H any, T HList] interface {
    	HList
    	Head() H
    	Tail() T
    }
    
    type Nil struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/go/types/union.go

    // extracting both the binary exprs (blist) and leaf types (tlist).
    func flattenUnion(list []ast.Expr, x ast.Expr) (blist, tlist []ast.Expr) {
    	if o, _ := x.(*ast.BinaryExpr); o != nil && o.Op == token.OR {
    		blist, tlist = flattenUnion(list, o.X)
    		blist = append(blist, o)
    		x = o.Y
    	}
    	return blist, append(tlist, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/union.go

    // extracting both the binary exprs (blist) and leaf types (tlist).
    func flattenUnion(list []syntax.Expr, x syntax.Expr) (blist, tlist []syntax.Expr) {
    	if o, _ := x.(*syntax.Operation); o != nil && o.Op == syntax.Or {
    		blist, tlist = flattenUnion(list, o.X)
    		blist = append(blist, o)
    		x = o.Y
    	}
    	return blist, append(tlist, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. android/guava/javadoc-link/checker-framework/package-list

    cpovirk <******@****.***> 1512668275 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  6. api/api-rules/violation_exceptions.list

    carlory <******@****.***> 1711012885 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    					"apiVersion": "v",
    					"kind":       "kList",
    				},
    				Items: []unstructured.Unstructured{
    					{Object: map[string]interface{}{"foo": int64(1)}},
    					{Object: map[string]interface{}{"foo": int64(2)}},
    				},
    			},
    			assertOnWriter: func() (io.Writer, func(t *testing.T)) {
    				var b bytes.Buffer
    				return &b, func(t *testing.T) {
    					// {'kind': 'kList', 'items': [{'foo': 1}, {'foo': 2}], 'apiVersion': 'v'}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/dependency-management-configurations.graffle/data.plist

    data.plist ActiveLayerIndex0App.omnigroup.OmniGraffle6169.23.0.276662AutoAdjusttrue{{0, 0}, {669, 686}}ClassSolidGraphicID2{0, 0}CanvasSize{669, 686}ColumnAlign1ColumnSp-11-22 23:16:50 +0000CreatorBenjamin MuschkoDisplayScale1 in = 1 inFileTypeautoGraphD{{16.5, 204.75}, {67, 47}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. istioctl/pkg/completion/completion.go

    }
    
    func getNamespaces(ctx context.Context, client kube.CLIClient) ([]corev1.Namespace, error) {
    	nslist, err := client.Kube().CoreV1().Namespaces().List(ctx, metav1.ListOptions{})
    	if err != nil {
    		return []corev1.Namespace{}, err
    	}
    	return nslist.Items, nil
    }
    
    func ValidNamespaceArgs(_ *cobra.Command, ctx cli.Context, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
    	if len(args) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top