Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,748 for input0 (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables.mlir

    // RUN: tf-opt -verify-diagnostics -tf-saved-model-lift-variables-test -split-input-file %s | FileCheck %s --dump-input=fail
    
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
      // Test case: Freezing VarHandleOp ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

                    def inputDir = file("dir1").toPath()
                    def outputFile = file("build/file1.txt").toPath()
                    def outputDir = file("build/dir1").toPath()
                    inputs.file(inputFile)
                    inputs.dir(inputDir)
                    outputs.file(outputFile)
                    outputs.dir(outputDir)
                    doLast {
                        Files.createDirectories(outputFile.parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/InputBehavior.java

        /**
         * Incremental inputs.
         *
         * <ul>
         *     <li>Changes to the property value can cause an incremental execution of the work</li>
         *     <li>Changes for the property can be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        INCREMENTAL(true, false),
    
        /**
         * Primary (incremental) inputs.
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-retval-attrs.pbtxt

        value {
          i: 0
        }
      }
    }
    node {
      name: "ret1"
      op: "_Retval"
      input: "arg1"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "index"
        value {
          i: 1
        }
      }
    }
    node {
      name: "ret2"
      op: "_Retval"
      input: "arg2"
      attr {
        key: "T"
        value {
          type: DT_BOOL
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         * </p>
         *
         * <br>
         * Example: The property is an input directory.
         * <ul>
         *     <li>The path of the input directory is ignored.</li>
         *     <li>The path of the files in the input directory are considered relative to the input directory.</li>
         * </ul>
         */
        RELATIVE,
    
        /**
         * Consider only the name of files and directories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        File outputFile = outputs.file(input.name + ".xform")
                        def outputDirectory = outputFile.parentFile
                        println("Transforming \$input in output directory \$outputDirectory")
                        java.nio.file.Files.copy(input.toPath(), outputFile.toPath())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/TaskDependencyResolutionEventsIntegrationTest.groovy

                dependencies {
                    parent files("parent.txt")
                    things files("thing.txt")
                }
    
                task resolveIt {
                    inputs.files configurations.things // no output declared and no action -> don't resolve inputs
                }
            """
    
            expect:
            succeeds "resolveIt"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
                    inputs = inputs.expect(allOf(startsWith("Plugin class '$it':"), containsString(FileUtils.testFileName))))
                }*/
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

            }
    
            List<Object> inputs = new ArrayList<>(inputTypes.size());
            for (Class<?> inputType : inputTypes) {
                if (inputType == ComponentMetadata.class) {
                    inputs.add(metadataProvider.getComponentMetadata());
                    continue;
                }
                if (inputType == IvyModuleDescriptor.class) {
                    inputs.add(metadataProvider.getIvyModuleDescriptor());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top