Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 841 for inputs_ (0.17 sec)

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

            {
              "shape": [1, 4],
              "name": "input",
              "quantization": {
              }
            },
            {
              "shape": [2, 2],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [0],
          "outputs": [1],
          "operators": [
            {
              "inputs": [ 0 ],
              "outputs": [ 1 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 986 bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/collections.go

    	SpecType   string
    	StatusType string
    }
    
    type inputs struct {
    	Entries  []colEntry
    	Packages []packageImport
    }
    
    func buildInputs() (inputs, error) {
    	b, err := os.ReadFile(filepath.Join(env.IstioSrc, "pkg/config/schema/metadata.yaml"))
    	if err != nil {
    		fmt.Printf("unable to read input file: %v", err)
    		return inputs{}, err
    	}
    
    	// Parse the file.
    	m, err := ast.Parse(string(b))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/cast_bf16.mlir

    // CHECK-NEXT:          },
    // CHECK-NEXT:          has_rank: true
    // CHECK-NEXT:        } ],
    // CHECK-NEXT:        inputs: [ 0 ],
    // CHECK-NEXT:        outputs: [ 2 ],
    // CHECK-NEXT:        operators: [ {
    // CHECK-NEXT:          inputs: [ 0 ],
    // CHECK-NEXT:          outputs: [ 1 ]
    // CHECK-NEXT:        }, {
    // CHECK-NEXT:          inputs: [ 1 ],
    // CHECK-NEXT:          outputs: [ 2 ]
    // CHECK-NEXT:        } ],
    // CHECK-NEXT:        name: "main"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/empty_input_output_names.json

                32,
                32,
                16
              ],
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            3
          ],
          "operators": [
            {
              "inputs": [
                0,
                1,
                -1
              ],
              "outputs": [
                3
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 21:03:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

        }
    }
    
    // tag::bundle-task[]
    tasks.register<NpmTask>("bundle") {
        args = listOf("run", "bundle")
    
        outputs.cacheIf { true }
    
        inputs.dir(file("scripts"))
            .withPropertyName("scripts")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        inputs.files("package.json", "package-lock.json")
            .withPropertyName("configFiles")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

                    }
                }
            }
    
            then:
            def binaries = realizeBinaries()
            binaries.size() == 2
            binaries.bin1.inputs == [binaries.bin1.sources.src1, binaries.bin1.sources.src2] as Set
            binaries.bin2.inputs == [binaries.bin2.sources.src1] as Set
        }
    
        def "copies binary tasks into task container"() {
            when:
            dsl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/kotlin/consumer/build.gradle.kts

    tasks.register("showTestClasspath") {
        val testCompileClasspath: FileCollection = configurations.testCompileClasspath.get()
        val testRuntimeClasspath: FileCollection = configurations.testRuntimeClasspath.get()
        inputs.files(testCompileClasspath)
        inputs.files(testRuntimeClasspath)
        doLast {
            println(testCompileClasspath.files.map(File::getName))
            println(testRuntimeClasspath.files.map(File::getName))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/hashtable_resource.mlir

    // CHECK:     buffer: 1,
    // CHECK:     name: "tf.HashTableV2",
    // CHECK:     quantization: {
    // CHECK-EMPTY
    // CHECK:     }
    // CHECK:   } ],
    // CHECK:   inputs: [  ],
    // CHECK:   outputs: [ 0 ],
    // CHECK:   operators: [ {
    // CHECK:     inputs: [  ],
    // CHECK:     outputs: [ 0 ],
    // CHECK:     custom_options:
    // CHECK:   name: "main"
    // CHECK: } ],
    // CHECK: description: "MLIR Converted.",
    // CHECK: buffers: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsCapturingInstantiator.java

    /**
     * An instantiator which is responsible for allowing the capture of implicit
     * inputs provided by injected services. For this to be possible, a capturing
     * instantiator "session" must be created before the instance is created. This
     * must be done by calling the {@link #capturing(ImplicitInputRecorder)} method
     * which provides a registrar which will record implicit inputs.
     *
     * Not all services have to be capturing. Only services implementing the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/systemProperties/groovy/build.gradle

    // end::system-properties[]
    
    abstract class PrintValue extends DefaultTask {
        @Input abstract Property<String> getInputValue()
        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::system-properties-task-inputs[]
    tasks.register('printProperty', PrintValue) {
        // Using the Gradle API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.systemProperty('system')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 652 bytes
    - Viewed (0)
Back to top