Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 157 for flist (0.07 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    					return res
    				}
    			}
    		}
    	}
    
    	return true
    }
    
    // makeObjList returns the list of type name objects for the given
    // list of named types.
    func makeObjList(tlist []*Named) []Object {
    	olist := make([]Object, len(tlist))
    	for i, t := range tlist {
    		olist[i] = t.obj
    	}
    	return olist
    }
    
    // Here is an example illustrating why we need to exclude the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    					return res
    				}
    			}
    		}
    	}
    
    	return true
    }
    
    // makeObjList returns the list of type name objects for the given
    // list of named types.
    func makeObjList(tlist []*Named) []Object {
    	olist := make([]Object, len(tlist))
    	for i, t := range tlist {
    		olist[i] = t.obj
    	}
    	return olist
    }
    
    // Here is an example illustrating why we need to exclude the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K 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. pkg/config/analysis/analyzers/sidecar/selector.go

    		return true
    	})
    
    	reportedResources := make(map[string]bool)
    	for p, sList := range podsToSidecars {
    		podResource := pods[p]
    
    		if len(sList) == 1 && !util.PodInAmbientMode(podResource) {
    			continue
    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. test/typeparam/list2.go

    func (e *_Element[T]) Prev() *_Element[T] {
    	if p := e.prev; e.list != nil && p != &e.list.root {
    		return p
    	}
    	return nil
    }
    
    // _List represents a doubly linked list.
    // The zero value for _List is an empty list ready to use.
    type _List[T any] struct {
    	root _Element[T] // sentinel list element, only &root, root.prev, and root.next are used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/WorkspaceSettingsFile.groovy

    import com.dd.plist.NSDictionary
    import com.dd.plist.NSNumber
    import com.dd.plist.PropertyListParser
    import org.gradle.test.fixtures.file.TestFile
    
    class WorkspaceSettingsFile {
        private static final String AUTO_CREATE_CONTEXTS_IF_NEEDED_KEY = "IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded"
        final String name
        final File file
        final NSDictionary plist
    
        WorkspaceSettingsFile(TestFile file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top