Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 175 for foo6 (0.48 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-legacy-call.mlir

        tf_executor.fetch
      }
      func.return
    }
    func.func @foo0(%arg0: tensor<*xi32>) -> tensor<*xi32> {
      %0 = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<*xi32>
      }
      func.return %0 : tensor<*xi32>
    }
    
    // CHECK: node {
    // CHECK:  name: "tf.LegacyCall"
    // CHECK-NEXT:  op: "foo0"
    // CHECK:  attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    apply plugin: "java"
    apply plugin: "idea"
    
    configurations {
      bar
      foo
      foo.extendsFrom(bar)
      baz
    }
    
    dependencies {
      bar files('bar.jar')
      foo files('foo.jar', 'foo2.jar', 'foo3.jar')
      baz files('foo3.jar')
    }
    
    idea {
        module {
            scopes.COMPILE.plus << configurations.foo
            scopes.COMPILE.minus += [configurations.bar, configurations.baz]
        }
    }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactoryTest.groovy

            when:
            def attributes = factory.of(FOO, "foo")
    
            then:
            attributes.getAttribute(FOO) == 'foo'
            attributes.findEntry(FOO).get() == "foo"
            attributes.findEntry("foo").get() == "foo"
    
            attributes.getAttribute(BAR) == null
            !attributes.findEntry(BAR).isPresent()
            !attributes.findEntry("bar").isPresent()
        }
    
        def "caches singleton sets"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 07 17:59:06 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  4. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected8.toml

    #
    [metadata]
    format.version = "1.1"
    
    [libraries]
    foo = {group = "org", name = "from-model", version = "1.0" }
    foo2 = {group = "org", name = "foo", version = "1.2" }
    from-script = {group = "org", name = "from-script", version = "1.0" }
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 367 bytes
    - Viewed (0)
  5. hack/testdata/CRD/foo-2.yaml

    kind: Foo
    apiVersion: company.com/v1
    metadata:
      name: second-instance
      namespace: default
      labels:
        pruneGroup: "true"
    someField: field1
    otherField: field2
    nestedField:
      someSubfield: subfield1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 17:04:19 UTC 2021
    - 228 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/foo-httproute.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo-route
    spec:
      parentRefs:
      - name: example-gateway
      hostnames:
      - "foo.example.com"
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /login
        backendRefs:
        - name: foo-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 355 bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

            buildFile << """
                class Foo0 {
                    static final byte[] MEMORY_HOG = new byte[10 * 1024 * 1024]
                }
                task myTask() {
                    doLast {
                        println new Foo0()
                    }
                }
            """
    
            expect:
            for(int i = 0; i < 35; i++) {
                buildFile.text = buildFile.text.replace("Foo$i", "Foo${i + 1}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

                launcher.withJvmTestMethods("example.MyTest", "foo", "foo2")
                launcher.withJvmTestMethods("example2.MyOtherTest", "bar")
            }
            then:
    
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4066.go

    package main
    
    func main() {
    	n := foo()
    	if n != 2 {
    		println(n)
    		panic("wrong return value")
    	}
    }
    
    type terr struct{}
    
    func foo() (val int) {
    	val = 0
    	defer func() {
    		if x := recover(); x != nil {
    			_ = x.(terr)
    		}
    	}()
    	for {
    		val = 2
    		foo1()
    	}
    	panic("unreachable")
    }
    
    func foo1() {
    	panic(terr{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 04 16:07:21 UTC 2013
    - 543 bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogIntegrationTest.groovy

                plugins {
                    id("version-catalog")
                }
    
                catalog {
                    configureExplicitAlias 'foo2', 'org', 'foo'
                    versionCatalog {
                        library('foo', 'org:from-model:1.0')
                        bundle('my', ['foo', 'foo2', 'from-script'])
                    }
                }
                dependencies {
                    versionCatalog 'org:from-script:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top