Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 445 for inter (0.06 sec)

  1. src/go/types/badlinkname.go

    import _ "unsafe"
    
    // This should properly be in infer.go, but that file is auto-generated.
    
    // infer should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/goplus/gox
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname badlinkname_Checker_infer go/types.(*Checker).infer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 702 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.txt

        synthetic final field $title: java.lang.String
        inner (anonymous) class MainKt$ArticleScreenContent$2
        method <init>(p0: java.lang.String): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    public final class MainKt {
        // source: 'main.kt'
        inner (anonymous) class MainKt$ArticleScreenContent$1
        inner (anonymous) class MainKt$ArticleScreenContent$2
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

            "genericArgs" | 'genericArgs(List<String>, Map<Integer, List<String>>)'
        }
    
        def "inner classes are described"() {
            when:
            def sb = new StringBuilder()
            MethodModelRuleDescriptor.of(weakMethod(Outer.Inner, "noArgs")).describeTo(sb)
    
            then:
            sb.toString() == 'MethodModelRuleDescriptorTest.Outer.Inner#noArgs()'
        }
    
        private WeaklyTypeReferencingMethod weakMethod(Class type, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

            params {
                text("gitUserEmail", "", label = "Git user.email Configuration", description = "Enter the git 'user.email' configuration to commit change under", display = ParameterDisplay.PROMPT, allowEmpty = true)
                text("confirmationCode", "", label = "Confirmation Code", description = "Enter the value 'startCycle' (no quotes) to confirm the promotion", display = ParameterDisplay.PROMPT, allowEmpty = false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/inference2.go

    	_, _ func(int) = f1, f1
    	_, _ func(int) = f1, f2 // ERROR "cannot infer P"
    )
    
    // Regular assignments
    func _() {
    	v1 = f1 // no error here because v1 is invalid (we don't know its type) due to the error above
    	var v1_ func() int
    	_ = v1_
    	v1_ = f1 // ERROR "cannot infer P"
    	v2 = f2  // ERROR "cannot infer P"
    
    	v3 = f1
    	v4 = f2
    	v5 = f3
    	v5 = f3[int]
    
    	v6 = f4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/sampleJavaProject/groovy/build.gradle

    version = "1.0.0"
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-io:commons-io:2.6'
    }
    
    // tag::link-task-properties[]
    // tag::inner-link-task-properties[]
    def archivesDirPath = layout.buildDirectory.dir('archives')
    // end::inner-link-task-properties[]
    
    tasks.register('packageClasses', Zip) {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from compileJava
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 878 bytes
    - Viewed (0)
  7. src/runtime/chanbarrier_test.go

    }
    
    func testChanSendBarrier(useSelect bool) {
    	var wg sync.WaitGroup
    	outer := 100
    	inner := 100000
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		outer = 10
    		inner = 1000
    	}
    	for i := 0; i < outer; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var garbage []byte
    			for j := 0; j < inner; j++ {
    				_, err := doRequest(useSelect)
    				_, ok := err.(myError)
    				if !ok {
    					panic(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pkg/typemap/map.go

    type TypeMap struct {
    	inner map[reflect.Type]any
    }
    
    func NewTypeMap() TypeMap {
    	return TypeMap{make(map[reflect.Type]any)}
    }
    
    func Set[T any](t TypeMap, v T) {
    	interfaceType := reflect.TypeOf((*T)(nil)).Elem()
    	t.inner[interfaceType] = v
    }
    
    func Get[T any](t TypeMap) *T {
    	v, f := t.inner[reflect.TypeFor[T]()]
    	if f {
    		return ptr.Of(v.(T))
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    			dprintf(depth, "Link:\n")
    			dumpInlines(in.Inner, depth+1)
    			dprintf(depth+1, "URL: %q\n", in.URL)
    		case *md.Strong:
    			dprintf(depth, "Strong(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		case *md.Emph:
    			dprintf(depth, "Emph(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		case *md.Del:
    			dprintf(depth, "Del(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

    }
    
    tasks.named<Test>("test") {
        useJUnitPlatform()
    
        maxHeapSize = "1G"
    
        testLogging {
            events("passed")
        }
    }
    // end::java-basic-test-config[]
    
    // tag::practical-integ-test-source-set[]
    sourceSets {
        create("intTest") {
            compileClasspath += sourceSets.main.get().output
            runtimeClasspath += sourceSets.main.get().output
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top