Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for output1 (0.15 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

            if (subgraph->inputs()->Get(i) == tensor_idx) {
              return true;
            }
          }
          for (size_t i = 0; i < subgraph->outputs()->size(); ++i) {
            if (subgraph->outputs()->Get(i) == tensor_idx) {
              return true;
            }
          }
        }
        return false;
      }
    
      // Returns the producer op code of the specified tensor_idx.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            if (source is TransformedArtifactSet) {
                // Represents artifact transform outputs. Visit the source rather than the files
                // Transforms may have inputs or parameters that are task outputs or other changing files
                // When this is not the case, we should run the transform now and write the result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

        }
    
        def "task input property can consume the mapped output of another task connected via project property with #description"() {
            taskTypeWithInputFileProperty()
            taskTypeWithIntInputProperty()
    
            buildFile << """
                def output = objects.property(Integer)
                output.with {
                    $propertyConfig
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                        files.getBuildDependencies()
                    }
                }
    
                task foo {
                    outputs.file "foo.txt"
                    doFirst {}
                }
    
                task bar {
                    inputs.files(new BuildableArtifact(files(foo)))
                    outputs.file "bar.txt"
                    doFirst {}
                }
            """
    
            when:
            run "bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "run"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "run", "-Dci=true"
    
            then:
            output.count("ON CI") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                def output = new ByteArrayOutputStream()
                def error = new ByteArrayOutputStream()
                def args = executer.allArgs
                args.remove("--no-daemon")
    
                model = connection.model(type)
                    .forTasks(tasks)
                    .withArguments(args)
                    .setStandardOutput(new TeeOutputStream(output, System.out))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    	c.Env = append(os.Environ(), "CGO_ENABLED=0")
    	if output, err := c.CombinedOutput(); err != nil {
    		t.Logf("go build -o %s read3.go\n%s", exe, output)
    		t.Fatalf("go build failed: %v", err)
    	}
    
    	// Use a deadline to try to get some output even if the program hangs.
    	ctx := context.Background()
    	if deadline, ok := t.Deadline(); ok {
    		// Leave a 20% grace period to flush output, which may be large on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. prow/release-commit.sh

    # This will create a version like 1.4-alpha.sha
    NEXT_VERSION=$(cat "${ROOT}/VERSION")
    TAG=$(git rev-parse HEAD)
    VERSION="${NEXT_VERSION}-alpha.${TAG}"
    
    # In CI we want to store the outputs to artifacts, which will preserve the build
    # If not specified, we can just create a temporary directory
    WORK_DIR="$(mktemp -d)/build"
    mkdir -p "${WORK_DIR}"
    
    MANIFEST=$(cat <<EOF
    version: ${VERSION}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *           (a module existing only in test output, not in main output) should be uncommon.</li>
         *     </ul>
         *   </li>
         *   <li>Otherwise (test output contains no module information), then:
         *     <ul>
         *       <li>If the main output is on the module-path, place the test output
         *           on a {@code --patch-module} option.</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    @$InputArtifact.name abstract Provider<FileSystemLocation> getInputArtifact()
                    @Override void transform($TransformOutputs.name outputs) {
                        println('Transforming ' + inputArtifact.get().asFile.name)
                        outputs.file(inputArtifact)
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top