Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 487 for isImplicit (0.74 sec)

  1. src/cmd/cgo/internal/testshared/testdata/implicit/implicit.go

    package implicit
    
    func I() int {
    	return 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 46 bytes
    - Viewed (0)
  2. releasenotes/notes/telemetry-implicit-match-all.yaml

    John Howard <******@****.***> 1686044748 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 09:45:48 UTC 2023
    - 269 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audagnostic.go

    // to restrict its accepted audiences to a set of implicit audiences.
    func WrapAudienceAgnosticRequest(implicit Audiences, delegate Request) Request {
    	return &audAgnosticRequestAuthenticator{
    		implicit: implicit,
    		delegate: delegate,
    	}
    }
    
    type audAgnosticTokenAuthenticator struct {
    	implicit Audiences
    	delegate Token
    }
    
    var _ = Token(&audAgnosticTokenAuthenticator{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 31 22:31:49 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  4. src/go/types/return.go

    	case *ast.LabeledStmt:
    		return hasBreak(s.Stmt, label, implicit)
    
    	case *ast.BranchStmt:
    		if s.Tok == token.BREAK {
    			if s.Label == nil {
    				return implicit
    			}
    			if s.Label.Name == label {
    				return true
    			}
    		}
    
    	case *ast.BlockStmt:
    		return hasBreakList(s.List, label, implicit)
    
    	case *ast.IfStmt:
    		if hasBreak(s.Body, label, implicit) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/return.go

    		return hasBreak(s.Stmt, label, implicit)
    
    	case *syntax.BranchStmt:
    		if s.Tok == syntax.Break {
    			if s.Label == nil {
    				return implicit
    			}
    			if s.Label.Value == label {
    				return true
    			}
    		}
    
    	case *syntax.BlockStmt:
    		return hasBreakList(s.List, label, implicit)
    
    	case *syntax.IfStmt:
    		if hasBreak(s.Then, label, implicit) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. test/live_uintptrkeepalive.go

    package p
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func implicit(uintptr) // ERROR "assuming ~p0 is unsafe uintptr"
    
    //go:uintptrkeepalive
    //go:nosplit
    func explicit(uintptr) {
    }
    
    func autotmpImplicit() { // ERROR "can inline autotmpImplicit"
    	var t int
    	implicit(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to implicit: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

        /**
         * Returns the list of implicit smart-casts which are required for the expression to be called. Includes only implicit
         * smart-casts:
         *
         * ```kt
         * if (this is String) {
         *   this.substring() // 'this' receiver is explicit, so no implicit smart-cast here.
         *
         *   smartcast() // 'this' receiver is implicit, therefore there is implicit smart-cast involved.
         * }
         * ```
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Option.java

        abstract class Value<T> {
            public abstract boolean isExplicit();
    
            public abstract T get();
    
            /**
             * Creates the default value for an option.
             */
            public static <T> Value<T> defaultValue(final T value) {
                return new Value<T>() {
                    @Override
                    public boolean isExplicit() {
                        return false;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15572.dir/a.go

    }
    
    func Fi() []T {
    	return []T{{}} // element with implicit composite literal type
    }
    
    func Fp() []*T {
    	return []*T{&T{}}
    }
    
    func Fip() []*T {
    	return []*T{{}} // element with implicit composite literal type
    }
    
    func Gp() map[int]*T {
    	return map[int]*T{0: &T{}}
    }
    
    func Gip() map[int]*T {
    	return map[int]*T{0: {}} // element with implicit composite literal type
    }
    
    func Hp() map[*T]int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 738 bytes
    - Viewed (0)
  10. test/convlit.go

    var bad8 float32 = 1e200 // ERROR "overflow"
    
    // but these implicit conversions are okay
    var good1 string = "a"
    var good2 int = 1.0
    var good3 int = 1e9
    var good4 float64 = 1e20
    
    // explicit conversion of string is okay
    var _ = []rune("abc")
    var _ = []byte("abc")
    
    // implicit is not
    var _ []int = "abc"  // ERROR "cannot use|incompatible|invalid|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 2.4K bytes
    - Viewed (0)
Back to top