Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 717 for inputs_ (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    	"istio.io/istio/pkg/workloadapi"
    )
    
    func TestServiceEntryServices(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    		se     *networkingclient.ServiceEntry
    		result []*workloadapi.Service
    	}{
    		{
    			name:   "DNS service entry with address",
    			inputs: []any{},
    			se: &networkingclient.ServiceEntry{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/deduplicate_const.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    module {
    func.func @add(%arg0: tensor<3x2xf32>) -> tensor<3x2xf32> attributes {tf.entry_function = {inputs = "serving_default_x", outputs = "outputs"}} {
      %0 = "tfl.pseudo_const" () {value = dense<[[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]> : tensor<3x2xf32>} : () -> tensor<3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top