Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 587 for corerest (0.2 sec)

  1. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/jvm/tasks/JarTest.groovy

            jar.manifest != null
            jar.metaInf != null
        }
    
        def "correct jar manifest"() {
            when:
            jar.manifest = new DefaultManifest(null)
            jar.manifest {
                attributes(key: 'value')
            }
    
            then:
            jar.manifest.attributes.key == 'value'
        }
    
        def "correct jar manifest from null manifest"() {
            when:
            jar.manifest = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue22344.go

    		)
    		var z [iota]int                  // [2]int
    		_ = unsafe.Sizeof([2]int{} == z) // assert types are equal
    	})
    	three = iota // the sequence continues
    )
    
    var _ [three]int = [3]int{} // assert 'three' has correct value
    
    func main() {
    
    	const (
    		_ = iota
    		_ = len([iota]byte{})
    		_ = unsafe.Sizeof(iota)
    		_ = unsafe.Sizeof(func() { _ = iota })
    		_ = unsafe.Sizeof(func() { var _ = iota })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 12 06:46:57 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/BUILD

        deps = [
            ":cpp",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  5. build-logic/dependency-modules/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 276 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    one warning found
    
    > Task :app:processResources NO-SOURCE
    > Task :app:classes
    > Task :app:jar
    > Task :app:startScripts
    > Task :app:distTar
    > Task :app:distZip
    > Task :app:assemble
    > Task :app:compileTestJava NO-SOURCE
    > Task :app:compileTestScala
    [Warn] : -target is deprecated: Use -release instead to compile against the correct platform API.
    one warning found
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectIntegrationTest.groovy

            '1.7'   | 'JavaSE-1.7'
            '1.8'   | 'JavaSE-1.8'
            '1.9'   | 'JavaSE-9'
            '1.10'  | 'JavaSE-10'
        }
    
        @ToBeFixedForConfigurationCache
        def "generated JDT preferences have correct compiler version"(String version, String expectedVersion) {
            settingsFile << "rootProject.name = 'java'"
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/internal/fuzz/mutator_test.go

    		10,
    		100,
    		1000,
    		10000,
    		100000,
    	} {
    		b.Run(strconv.Itoa(size), func(b *testing.B) {
    			buf := make([]byte, size)
    			b.ResetTimer()
    
    			for i := 0; i < b.N; i++ {
    				// resize buffer to the correct shape and reset the PCG
    				buf = buf[0:size]
    				m.r = newPcgRand()
    				m.mutate([]any{buf}, workerSharedMemSize)
    			}
    		})
    	}
    }
    
    func BenchmarkMutatorString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

        ),
        deps = [
            ":renderers",
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
            "//tensorflow/core/platform:types",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue24339.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Use a different line number for each token so we can
    // check that the error message appears at the correct
    // position.
    var _ = struct{}{ /*line :20:1*/foo /*line :21:1*/: /*line :22:1*/0 }
    
    
    
    
    
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:09 UTC 2022
    - 416 bytes
    - Viewed (0)
Back to top