Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 487 for Implicits (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }
    
        assertThat(buffer.readByteString()).isEqualTo("A20743054A6F6E6573".decodeHex())
      }
    
      @Test fun `decode implicit tagged implicit prefixed type`() {
        // Type1 ::= VisibleString
        // Type2 ::= [APPLICATION 3] IMPLICIT Type1
        // Type3 ::= [2] Type2
        // Type4 ::= [APPLICATION 7] IMPLICIT Type3
        val buffer =
          Buffer()
            .write("670743054A6F6E6573".decodeHex())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

            expect:
            def variants = getOutgoingVariants(publications)
            variants.size() == 2
    
            def implicit = variants.first()
            implicit.displayName == displayName
            implicit.attributes == AttributeTestUtil.attributes(["thing": "value1"])
            implicit.artifacts == allArtifacts
    
            def explicit = (variants as List)[1]
            explicit.displayName.displayName == '<config> variant child'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top