Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,773 for Def (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    Antonio Sanchez <******@****.***> 1694228811 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue24161arg/def.go

    Austin Clements <******@****.***> 1683224724 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 382 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

    A. Unique TensorFlower <******@****.***> 1605121757 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/OutputSnapshotUtilTest.groovy

        def virtualFileSystem = TestFiles.virtualFileSystem()
        def fileSystemAccess = TestFiles.fileSystemAccess(virtualFileSystem)
    
        def "pre-existing directories are filtered"() {
            def outputDir = temporaryFolder.file("outputDir").createDir()
            def beforeExecution = snapshotOutput(outputDir)
            outputDir.file()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DaemonForkOptionsTest.groovy

            def spec1 = Mock(ClassLoaderSpec)
            def spec2 = Mock(ClassLoaderSpec)
            def spec3 = Mock(ClassLoaderSpec)
            def spec4 = Mock(ClassLoaderSpec)
            def settings1 = daemonForkOptionsBuilder()
                    .withClassLoaderStructure(new HierarchicalClassLoaderStructure(spec1).withChild(spec2).withChild(spec3))
                    .build()
            def settings2 = daemonForkOptionsBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

        def cleanup() {
            factory.stop()
        }
    
        def createsANonBlockingActorForATargetObject() {
            when:
            def actor = factory.createActor(target)
    
            then:
            actor != null
        }
    
        def cachesTheNonBlockingActorForATargetObject() {
            when:
            def actor1 = factory.createActor(target)
            def actor2 = factory.createActor(target)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileSystemPropertySpec.groovy

        def "can set value using absolute file"() {
            given:
            def file = tmpDir.file("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
            prop.get().asFile == file
        }
    
        def "can set value using relative file"() {
            given:
            def file = new File("thing")
            def prop = propertyWithNoValue()
            prop.set(file)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

        }
    
        def "can send a dynamic proxy"() {
            def cl = isolated(PayloadInterface)
            def payloadClass = cl.loadClass(PayloadInterface.name)
            def original = Proxy.newProxyInstance(cl, [payloadClass] as Class[], new GroovyInvocationHandler())
    
            when:
            def received = receiver.deserialize(originator.serialize(original))
            def reply = originator.deserialize(receiver.serialize(received))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/TryTest.groovy

        }
    
        def "map a failure"() {
            def failure = Try.<Integer>failure(new RuntimeException("failed"))
            expect:
            failure.map { it + 1 } == failure
        }
    
        def "fail during tryMap"() {
            def failure = new RuntimeException("failure")
            expect:
            Try.successful(10).tryMap { throw failure } == Try.failure(failure)
        }
    
        def "fail during map"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

        def converter = new LayoutToPropertiesConverter(new BuildLayoutFactory())
        def gradleDistribution = temp.createDir("gradleDistribution")
        def gradleHome = temp.createDir("gradleHome")
        def rootDir = temp.createDir("projectDir")
    
        def "only extracts properties for known build options"() {
            when:
            def properties = properties()
            def layout = layout(properties)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top