Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 493 for winter (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x86asm
    
    import (
    	"fmt"
    	"strings"
    )
    
    // IntelSyntax returns the Intel assembler syntax for the instruction, as defined by Intel's XED tool.
    func IntelSyntax(inst Inst, pc uint64, symname SymLookup) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. test/interface/embed2.go

    package main
    
    import "os"
    
    const Value = 1e12
    
    type Inter interface {
    	M() int64
    }
    
    type T int64
    
    func (t T) M() int64 { return int64(t) }
    
    var t = T(Value)
    var pt = &t
    var ti Inter = t
    var pti = &ti
    
    type S struct{ Inter }
    
    var s = S{ti}
    var ps = &s
    
    type SP struct{ *Inter } // ERROR "interface"
    
    var i Inter
    var pi = &i
    
    var ok = true
    
    func check(s string, v int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. test/interface/embed.go

    package main
    
    import "os"
    
    const Value = 1e12
    
    type Inter interface { M() int64 }
    
    type T int64
    func (t T) M() int64 { return int64(t) }
    var t = T(Value)
    var pt = &t
    var ti Inter = t
    
    type S struct { Inter }
    var s = S{ ti }
    var ps = &s
    
    var i Inter
    
    var ok = true
    
    func check(s string, v int64) {
    	if v != Value {
    		println(s, v)
    		ok = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 924 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

                }
    
                ${check('ModuleC', declaredDependencyId('ModuleC', projectDep), 'conf', winner)}
    """)
    
            then:
            succeeds('check')
    
            where:
            projectDep | transitiveDep | winner                                | preferProjectModules | depSubstitution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. test/recover3.go

    	var inter interface{}
    	inter = 1
    	check("type-concrete", func() { println(inter.(string)) }, "int, not string")
    	check("type-interface", func() { println(inter.(m)) }, "missing method m")
    
    	if didbug {
    		panic("recover3")
    	}
    }
    
    type m interface {
    	m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. releasenotes/notes/ns-filter.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 186 bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/testdata/wasm-filter.yaml

    zirain <******@****.***> 1666116203 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
  9. test/method5.go

    type tinter interface {
    	m(int, byte) (byte, int)
    }
    
    // Embedding via pointer.
    
    type T1 struct {
    	T2
    }
    
    type T2 struct {
    	*T3
    }
    
    type T3 struct {
    	*T4
    }
    
    type T4 struct {
    }
    
    func (t4 T4) M(x int, b byte) (byte, int) { return b, x+40 }
    
    var failed = false
    
    func CheckI(name string, i Tinter, inc int) {
    	b, x := i.M(1000, 99)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top