Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,083 for IMPLEMENTATION (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/PATENTS

    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    that this implementation of Go or any code incorporated within this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    that this implementation of Go or any code incorporated within this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/PATENTS

    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    that this implementation of Go or any code incorporated within this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. test/fixedbugs/bug324.dir/prog.go

    package main
    
    import (
    	"./p"
    )
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    
    func main() {
    	// nothing unusual here
    	var x Exported
    	x = new(Implementation)
    	x.private()  //  main.Implementation.private()
    
    	// same here - should be and is legal
    	var px p.Exported
    	px = p.X
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  5. build-logic/profiling/build.gradle.kts

    }
    
    description = "Provides plugins that configure profiling tools (jmh and build scans)"
    
    dependencies {
        implementation("com.gradle:develocity-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation"))
    
        implementation("me.champeau.jmh:jmh-gradle-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 430 bytes
    - Viewed (0)
  6. platforms/native/platform-native/build.gradle.kts

        api(libs.nativePlatform)
        api(libs.slf4jApi)
    
        implementation(project(":enterprise-logging"))
        implementation(projects.io)
        implementation(project(":logging-api"))
        implementation(project(":process-services"))
    
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.gson)
        implementation(libs.guava)
        implementation(libs.snakeyaml)
    
        testFixturesApi(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/build.gradle.kts

        api(libs.jansi)
        api(libs.jsr305)
        api(libs.slf4jApi)
    
        implementation(projects.concurrent)
        implementation(projects.io)
        implementation(projects.messaging)
    
        implementation(libs.errorProneAnnotations)
        implementation(libs.julToSlf4j)
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/ide/base-ide-plugins/build.gradle.kts

        api(project(":core-api"))
        api(project(":ide"))
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":core"))
        implementation(project(":logging"))
        implementation(project(":logging-api"))
        implementation(project(":process-services"))
    
        implementation(libs.commonsLang)
        implementation(libs.guava)
    
        runtimeOnly(project(":dependency-management"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyJavaLibraryInteractionIntegrationTest.groovy

            'java-library' | 'implementation' | true              | false                     | "classes"
            'java-library' | 'implementation' | false             | false                     | "jar"
    
            'java'         | 'implementation' | true              | false                     | "classes"
            'java'         | 'implementation' | false             | false                     | "jar"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/build.gradle.kts

        api(libs.jsr305)
        api(libs.inject)
    
        implementation(project(":logging-api"))
        implementation(project(":maven"))
        implementation(project(":process-services"))
        implementation(project(":publish"))
        implementation(project(":version-control"))
    
        implementation(libs.commonsLang)
        implementation(libs.groovy)
        implementation(libs.slf4jApi)
    
        testFixturesApi(project(":base-services")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top