Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for emerson (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf-hashtables.mlir

      // CHECK-NEXT:  "tf.LookupTableRemoveV2"
      func.return
    }
    
    // -----
    
    // Test for case with import op.
    func.func @hashtable_import(%arg0: tensor<5x!tf_type.string>) {
      %cst = arith.constant dense<["emerson", "lake", "palmer"]> : tensor<3x!tf_type.string>
      %cst_0 = arith.constant dense<[0, 1, 2]> : tensor<3xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

              | Creator: 	PersonRules#person(Person)
        + employed
              | Type:   	boolean
              | Value:  	false
              | Creator: 	PersonRules#person(Person)
        + father
              | Type:   	Person
              | Value:  	null
              | Creator: 	PersonRules#person(Person)
        + firstName
              | Type:   	java.lang.String
              | Value:  	John
              | Creator: 	PersonRules#person(Person)
        + homeDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

    // tag::ndos[]
    // tag::ndol[]
    // tag::ndoc[]
    abstract class Person {
        String name
    }
    // end::ndol[]
    // end::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectSet {
        // Define a named domain object set to hold Person objects
        NamedDomainObjectSet<Person> people = project.objects.namedDomainObjectSet(Person)
    
        // Add a person to the set
        void addPerson(String name) {
            people.create(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

    // tag::ndos[]
    // tag::ndol[]
    // tag::ndoc[]
    abstract class Person(val name: String)
    // end::ndol[]
    // end::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectSet {
        // Define a named domain object set to hold Person objects
        private val people: NamedDomainObjectSet<Person> = project.objects.namedDomainObjectSet(Person::class)
    
        // Add a person to the set
        fun addPerson(name: String) {
            people.plus(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. container-tests/src/test/java/okhttp3/containers/BasicMockServerTest.kt

            .`when`(
              request().withPath("/person")
                .withQueryStringParameter("name", "peter"),
            )
            .respond(response().withBody("Peter the person!"))
    
          val response = client.newCall(Request((mockServer.endpoint + "/person?name=peter").toHttpUrl())).execute()
    
          assertThat(response.body.string()).contains("Peter the person")
        }
      }
    
      @Test
      fun testHttpsRequest() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt

              Request((mockServer.secureEndpoint + "/person?name=peter").toHttpUrl()),
            ).execute()
    
          assertThat(response.body.string()).contains("Peter the person")
          assertThat(response.protocol).isEqualTo(Protocol.HTTP_1_1)
        }
      }
    
      @Test
      fun testUrlConnectionDirect() {
        testRequest {
          val url = URI(mockServer.endpoint + "/person?name=peter").toURL()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

                }
            """
        }
    
        def goodCode() {
            file("src/main/scala/compile/test/Person.scala") << """
                package compile.test
    
                /**
                * A person.
                * Can live in a house.
                * Has a name and an age.
                */
                class Person(val name: String, val age: Int) {
                    def hello(): List[Int] = List(3, 1, 2)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/slices/example_test.go

    	// Output:
    	// Vera: 2 true
    	// Bill: 1 false
    }
    
    func ExampleBinarySearchFunc() {
    	type Person struct {
    		Name string
    		Age  int
    	}
    	people := []Person{
    		{"Alice", 55},
    		{"Bob", 24},
    		{"Gopher", 13},
    	}
    	n, found := slices.BinarySearchFunc(people, Person{"Bob", 0}, func(a, b Person) int {
    		return strings.Compare(a.Name, b.Name)
    	})
    	fmt.Println("Bob:", n, found)
    	// Output:
    	// Bob: 1 true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. container-tests/src/test/java/okhttp3/containers/SocksProxyTest.kt

        MockServerClient(mockServer.host, mockServer.serverPort).use { mockServerClient ->
          mockServerClient
            .`when`(
              request().withPath("/person")
                .withQueryStringParameter("name", "peter"),
            )
            .respond(response().withBody("Peter the person!"))
    
          val client =
            OkHttpClient.Builder()
              .proxy(Proxy(SOCKS, InetSocketAddress(socks5Proxy.host, socks5Proxy.firstMappedPort)))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

                @Managed
                interface Person {
                    Person getFather()
                    void setFather(Person person)
                }
    
                class Rules extends RuleSource {
                    @Model
                    void father(Person father) {}
    
                    @Model
                    void person(Person child, @Path("father") Person father) {
                        child.father = father
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top