Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 534 for setchl (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      }
    
      Operation &fetch = graph.GetBody().back();
      if (!isa<FetchOp>(fetch))
        return fetch.emitOpError()
               << "invalid tf_executor.graph terminator, fetch expected";
    
      // Ensure that the fetch terminator operands matches the graph result type.
      // All the non-control operands of the fetch operation must match the graph
      // returned value.
      if (fetch.getNumOperands() < graph.getNumResults())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/func_list_attr.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK-DAG: name: "foo"
    func.func @foo() -> tensor<10xf32> {
      %0 = tf_executor.graph {
        %1:2 = tf_executor.island wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_FLOAT", value = dense<1.000000e+00> : tensor<10xf32>} : () -> tensor<10xf32> loc("const_1")
        tf_executor.fetch %1#0 : tensor<10xf32>
      }
      func.return %0 : tensor<10xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/kotlin/maven-repository-stub/src/main/kotlin/maven-repository-stub.gradle.kts

    tasks.withType<PublishToMavenRepository>().configureEach {
        notCompatibleWithConfigurationCache("Configures repository at execution time")
        doFirst {
            val address = com.example.MavenRepositoryStub.start()
            getRepository().setUrl(address)
        }
        doLast {
            com.example.MavenRepositoryStub.stop()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  4. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/service/impl/EsDataServiceTest.java

            accessResult1.setParentUrl("http://www.parent.com/");
            accessResult1.setRuleId("htmlRule");
            accessResult1.setSessionId("id1");
            accessResult1.setStatus(200);
            accessResult1.setUrl("http://www.id1.com/");
    
            dataService.store(accessResult1);
    
            final EsAccessResult accessResult2 = dataService.getAccessResult("id1", "http://www.id1.com/");
            assertNotNull(accessResult2);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/jwks_resolver.go

    	// How many times should we retry the failed network fetch on main flow. The main flow
    	// means it's called when Pilot is pushing configs. Do not retry to make sure not to block Pilot
    	// too long.
    	networkFetchRetryCountOnMainFlow = 0
    
    	// How many times should we retry the failed network fetch on refresh flow. The refresh flow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_hash.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    [!net:golang.org] skip
    [!git] skip
    
    # fetch commit hash reachable from refs/heads/* and refs/tags/* is OK
    go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959 # on master branch
    
    # fetch other commit hash, even with a non-standard ref, is not OK
    ! go list -m golang.org/x/time@334d83c35137ac2b376c1dc3e4c7733791855a3a # refs/changes/24/41624/3
    stderr 'unknown revision'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 626 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/output-shapes-attr.mlir

    func.func @main(%arg0: tensor<10xi32>) -> tensor<10xi32>
    attributes {tf.entry_function = {inputs = "input0", outputs = "output0"}} {
      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<10xi32>
      }
      func.return %graph : tensor<10xi32>
    }
    
    // CHECK:      node {
    // CHECK-NEXT:   name: "input0"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          key: "T"
    // CHECK-NEXT:     value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/kotlin/modules/string-utils/build.gradle.kts

    version = "1.0"
    
    dependencies {
        implementation("org.apache.commons:commons-lang3:3.12.0")
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                setUrl(file("../../local-repo"))
            }
        }
        publications {
            create<MavenPublication>("maven") { from(components["java"]) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 414 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-if-ops.mlir

        tf_executor.fetch %outputs : tensor<*xf32>
      }
      func.return %0 : tensor<*xf32>
    }
    
    func.func @cond_false(%arg0: tensor<*xf32>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %0 = tf_executor.graph {
        %outputs, %control = tf_executor.island wraps "tf.Mul"(%arg0, %arg1) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        tf_executor.fetch %outputs : tensor<*xf32>
      }
      func.return %0 : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-outgoingCapabilities/kotlin/build.gradle.kts

                capability("com.other:module:1.1")
            }
        }
    }
    // end::declare-outgoing-capabilities[]
    
    publishing {
        repositories {
            maven {
                setUrl("${buildDir}/repo")
            }
        }
        // tag::ignore-pom-warnings[]
        publications {
            register<MavenPublication>("maven") {
                from(components["java"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 846 bytes
    - Viewed (0)
Back to top