Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,210 for output0 (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/optional_input.json

                32,
                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2
          ],
          "operators": [
            {
              "inputs": [
                0,
                1
              ],
              "outputs": [
                2
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
        int variable_start_index = -1;
        std::string function_name;
      };
    
      // We need to introduce this version to adapt to the output of gpu inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

        @get:InputArtifact
        @get:Classpath
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val jarFile = inputArtifact.get().asFile
            val zipFile = ZipFile(jarFile)
            val outputRoot = outputs.dir("public-api")
            zipFile.stream().forEach { entry ->
                if (entry.shouldInclude()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/warningprinter.go

    )
    
    type WarningPrinter struct {
    	// out is the writer to output warnings to
    	out io.Writer
    	// opts contains options controlling warning output
    	opts WarningPrinterOptions
    }
    
    // WarningPrinterOptions controls the behavior of a WarningPrinter constructed using NewWarningPrinter()
    type WarningPrinterOptions struct {
    	// Color indicates that warning output can include ANSI color codes
    	Color bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 11:10:15 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/CachingDisabledReasonCategory.java

         *
         * @since 8.3
         */
        NOT_CACHEABLE,
    
        /**
         * The work has no outputs declared.
         */
        NO_OUTPUTS_DECLARED,
    
        /**
         * The work has a {@code org.gradle.api.file.FileTree} or {@code org.gradle.api.internal.file.collections.DirectoryFileTree} as an output.
         *
         * @since 5.0
         */
        NON_CACHEABLE_TREE_OUTPUT,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

        private final String[] inputs;
    
        private final String[] outputs;
    
        private String[] newInputs;
    
        private String[] newOutputs;
    
        public SynonymItem(final long id, final String[] inputs, final String[] outputs) {
            this.id = id;
            this.inputs = inputs;
            this.outputs = outputs;
    
            if (id == 0) {
                // create
                newInputs = inputs;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

        /**
         * The type of output the report produces
         */
        enum OutputType {
    
            /**
             * The report outputs a single file.
             * <p>
             * That is, the {@link #getOutputLocation()} points to a single file.
             */
            FILE,
    
            /**
             * The report outputs files into a directory.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                class MyPlugin : Plugin<Project> {
                    override fun apply(target: Project) {
                        target.tasks.register("myTask") { task ->
                            task.outputs.file("build/output.txt")
                            task.doLast(Action { println("Hello") })
                        }
                    }
                }
            """
    
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                    configurations { create("default") }
                }
                project(":producer") {
                    task producer {
                        ext.output = objects.fileProperty()
                        outputs.file output
                        output.set(file("out"))
                    }
                    task longRunning {
                        dependsOn producer
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top