Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for underIs (0.48 sec)

  1. src/go/types/under.go

    // Source: ../../cmd/compile/internal/types2/under.go
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/under.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    func under(t Type) Type {
    	if t := asNamed(t); t != nil {
    		return t.under()
    	}
    	return t.Underlying()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeparam.go

    	return t.iface().typeSet().is(f)
    }
    
    // underIs calls f with the underlying types of the specific type terms
    // of t's constraint and reports whether all calls to f returned true.
    // If there are no specific terms, underIs returns the result of f(nil).
    func (t *TypeParam) underIs(f func(Type) bool) bool {
    	return t.iface().typeSet().underIs(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/go/types/typeparam.go

    	return t.iface().typeSet().is(f)
    }
    
    // underIs calls f with the underlying types of the specific type terms
    // of t's constraint and reports whether all calls to f returned true.
    // If there are no specific terms, underIs returns the result of f(nil).
    func (t *TypeParam) underIs(f func(Type) bool) bool {
    	return t.iface().typeSet().underIs(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/go/types/conversions.go

    }
    
    func isUintptr(typ Type) bool {
    	t, _ := under(typ).(*Basic)
    	return t != nil && t.kind == Uintptr
    }
    
    func isUnsafePointer(typ Type) bool {
    	t, _ := under(typ).(*Basic)
    	return t != nil && t.kind == UnsafePointer
    }
    
    func isPointer(typ Type) bool {
    	_, ok := under(typ).(*Pointer)
    	return ok
    }
    
    func isBytesOrRunes(typ Type) bool {
    	if s, _ := under(typ).(*Slice); s != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/conversions.go

    }
    
    func isUintptr(typ Type) bool {
    	t, _ := under(typ).(*Basic)
    	return t != nil && t.kind == Uintptr
    }
    
    func isUnsafePointer(typ Type) bool {
    	t, _ := under(typ).(*Basic)
    	return t != nil && t.kind == UnsafePointer
    }
    
    func isPointer(typ Type) bool {
    	_, ok := under(typ).(*Pointer)
    	return ok
    }
    
    func isBytesOrRunes(typ Type) bool {
    	if s, _ := under(typ).(*Slice); s != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/de/stopwords.txt

    aber
    alle
    allem
    allen
    aller
    alles
    als
    also
    am
    an
    ander
    andere
    anderem
    anderen
    anderer
    anderes
    anderm
    andern
    anderr
    anders
    auch
    auf
    aus
    bei
    bin
    bis
    bist
    da
    damit
    dann
    der
    den
    des
    dem
    die
    das
    daß
    derselbe
    derselben
    denselben
    desselben
    demselben
    dieselbe
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. ci/official/utilities/repack_libtensorflow.sh

    # under the root of srcjars jars created by bazel, rather than under
    # the maven-style src/main/java subdirectory.
    #
    # Bazel manages annotation generated source as follows: First, it
    # calls javac with options that create generated files under a
    # bazel-out directory. Next, it archives the generated source files
    # into a srcjar directly under the root. There doesn't appear to be a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 19:47:53 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/ar.go

    	loaded := make(map[uint64]bool)
    	any := true
    	for any {
    		var load []uint64
    		returnAllUndefs := -1
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(returnAllUndefs)
    		if buildcfg.GOOS == "windows" {
    			undefs, froms = pruneUndefsForWindows(ctxt.loader, undefs, froms)
    		}
    		for k, symIdx := range undefs {
    			sname := ctxt.loader.SymName(symIdx)
    			if off := armap[sname]; off != 0 && !loaded[off] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingImmutableMap.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Unused stub class, unreferenced under Java and manually emulated under GWT.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 956 bytes
    - Viewed (0)
Back to top