Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 351 for inputs_1 (0.35 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListener.java

    public interface WorkInputListener {
        /**
         * Called when the execution of the given work item is imminent, or would have been if the primary inputs would not have been empty.
         * <p>
         *
         * @param work the identity of the unit of work to be executed
         * @param relevantBehaviors the file system inputs relevant to the task execution
         */
        void onExecute(UnitOfWork work, EnumSet<InputBehavior> relevantBehaviors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

        private final Packer delegate;
    
        public SnappyPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
                    return new SnappyFramedOutputStream(super.openOutput());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

                        "\""# func_name #"\", $0...)", returns>;
    
    // Add the second argument to the first argument, which is expected to be an
    // argument list.
    // bias(einsum(inputs), bias) --> einsum_with_bias(AppendToVector(inputs, bias))
    // Since inputs is a vector in case of einsum, we cannot use ArgumentList here.
    def AppendToVector : NativeCodeCall<"AppendToVector($0, $1)">;
    
    // The list of arguments of the composite function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.h

    namespace tensorflow {
    namespace calibrator {
    
    using ::stablehlo::quantization::CalibrationOptions;
    
    // MinMax calibration calculates the global min and global max values.
    // global min = min of given sample inputs
    // global max = max of given sample inputs
    class CalibrationStatisticsCollectorMinMax
        : public CalibrationStatisticsCollectorBase {
     public:
      explicit CalibrationStatisticsCollectorMinMax() { ClearData(); }
    
      void ClearData() override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`"quoted 'single quotes'"`))
    	f.Add([]byte(`"\$0"`))
    	f.Add([]byte(`"\$\0"`))
    	f.Add([]byte(`"\$"`))
    	f.Add([]byte(`"\$ "`))
    
    	// Example positive inputs from TestSplitPkgConfigOutput.
    	// Some bare newlines have been removed so that the inputs
    	// are valid in the shell script we use for comparison.
    	f.Add([]byte(`-r:foo -L/usr/white\ space/lib -lfoo\ bar -lbar\ baz`))
    	f.Add([]byte(`-lextra\ fun\ arg\\`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

            "TF2XLA TPU bridge input check: packed with number of inputs not 1.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      } else if (!rep.getIsPacked() && arity != num_replicas) {
        rep.emitOpError(
            "TF2XLA TPU bridge input check: number of inputs inconsistent.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelDslUsageIntegrationSpec.groovy

            then:
            args("-I", file("init.gradle").absolutePath)
            succeeds "printStrings"
            output.contains "strings: [foo]"
        }
    
        def "model block rules in nested context cannot reference inputs using dollar method expressions - #code"() {
            given:
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
    
            when:
            buildScript """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. testing/smoke-test/build.gradle.kts

            maxParallelForks = 1 // those tests are pretty expensive, we shouldn't execute them concurrently
            inputs.property("androidHomeIsSet", System.getenv("ANDROID_HOME") != null)
            inputs.property("androidSdkRootIsSet", System.getenv("ANDROID_SDK_ROOT") != null)
    
            if (remoteProjectOutputFiles != null) {
                inputs.files(remoteProjectOutputFiles)
                    .withPropertyName("remoteProjectsSource")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            }
                        }
                        def optionalFiles = optionalAttributeView.files
                        def optionalArtifacts = optionalAttributeView.artifacts
    
                        inputs.files defaultFiles
                        doLast {
                            assert defaultFiles.collect { it.name } == ['lib.jar', 'lib-util.jar', 'ui.jar', 'some-jar-1.0.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

        subject:
          - foo Object
        inputs:
          - other.thing String (java.lang.String) [*]
    
      by-type
        subject:
          - <no path> Runnable [*]
        inputs:
          - <no path> String (java.lang.String) [*]
    
      creator
        inputs:
          - a.b Object (a.b) [*]
    '''
        }
    
        def "closes elements as required to bind all subjects and inputs"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
Back to top