Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,749 for input0 (0.14 sec)

  1. src/cmd/gofmt/testdata/typeparams.input

    Robert Findley <******@****.***> 1635347664 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 15:34:22 UTC 2021
    - 677 bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/typeswitch.input

    Russ Cox <******@****.***> 1643907045 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/go/printer/testdata/generics.input

    Robert Griesemer <******@****.***> 1651712916 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 16:18:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/c/kernels/bitcast_op_test.cc

      DummyDevice dummy_device(nullptr);
      params.device = &dummy_device;
      params.op_kernel = kernel.get();
      gtl::InlinedVector<TensorValue, 4> inputs;
      inputs.emplace_back(input_tensor);
      params.inputs = inputs;
    
      OpKernelContext ctx(&params);
      kernel->Compute(&ctx);
      ASSERT_EQ(expected_code, ctx.status().code());
      if (expected_code == error::OK) {
        ASSERT_EQ(expected_shape, ctx.mutable_output(0)->shape())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/InputPropertyAnnotationOverrideIntegrationTest.groovy

            InputDirectory | 'file("inputs")'
            InputFiles     | 'files("inputs")'
            Input          | '{ layout.projectDirectory.file("inputs/input").asFile.text }'
        }
    
    
        def "can override @#inputType.simpleName with @Internal"() {
            buildFile << """
                class InputBaseTask extends BaseTask {
                    @${inputType.name} def input
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

            
            input2 = getResourceFile("2.txt")
            output2 = signing.signatureType.fileFor(input2)
            input2Artifact = new DefaultPublishArtifact(input2.name, "Text File", "txt", null, null, input2)
            
            [output1, output2].each { output ->
                assert !output.exists() || output.delete()
            }
            
            assert input1.text && input2.text  // don't care what it is, just need some
        }
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/init0.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init0
    
    // initialization cycles (we don't know the types)
    const (
    	s0 /* ERROR "initialization cycle: s0 refers to itself" */ = s0
    
    	x0 /* ERROR "initialization cycle for x0" */ = y0
    	y0 = x0
    
    	a0 = b0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalTaskWithNormalizedInputsIntegrationTest.groovy

        def "incremental task with NAME_ONLY inputs (matching file names and content) detects deleted file"() {
            def inputs = folderNames().collect { file("${it}/input.txt").createFile() }
    
            buildFile << incrementalTaskWithNameOnlyInputFiles(inputs)
            run INCREMENTAL_TASK_NAME
    
            when:
            inputs[1..2]*.delete()
            println "${inputs} exists: ${inputs*.exists()}"
            run INCREMENTAL_TASK_NAME, "--info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

                  dependsOn "a"
                  inputs.dir "b"
                  outputs.file "build/b"
                  doLast {}
                }
                task c {
                  dependsOn "b"
                  inputs.dir "c"
                  outputs.file "build/c"
                  doLast {}
                }
                task d {
                  dependsOn "c"
                  inputs.dir "d"
                  outputs.file "build/d"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/c/kernels/summary_op_test.cc

      params.op_kernel = kernel.get();
      AllocatorAttributes alloc_attrs;
      params.output_attr_array = &alloc_attrs;
      gtl::InlinedVector<TensorValue, 4> inputs;
      inputs.emplace_back(tags);
      inputs.emplace_back(values);
      params.inputs = inputs;
      OpKernelContext ctx(&params, 1);
      kernel->Compute(&ctx);
      ASSERT_EQ(expected_code, ctx.status().code());
      if (expected_code == error::OK) {
        Summary summary;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top