Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 786 for produced (0.11 sec)

  1. src/archive/tar/writer_test.go

    		}
    		testFnc any // testHeader | testWrite | testReadFrom | testClose
    	)
    
    	vectors := []struct {
    		file  string // Optional filename of expected output
    		tests []testFnc
    	}{{
    		// The writer test file was produced with this command:
    		// tar (GNU tar) 1.26
    		//   ln -s small.txt link.txt
    		//   tar -b 1 --format=ustar -c -f writer.tar small.txt small2.txt link.txt
    		file: "testdata/writer.tar",
    		tests: []testFnc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

             * @param requested The attribute set which must be produced by any previous variant in order to achieve the
             *      original user-requested attribute set after {@code chain} is applied to that previous variant.
             * @param transforms The remaining transforms which may be prepended to {@code chain} to produce a solution.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.h

    // This function will block till the operation that produces `h` has completed.
    TF_CAPI_EXPORT extern int64_t TFE_TensorHandleDim(TFE_TensorHandle* h,
                                                      int dim_index,
                                                      TF_Status* status);
    
    // Returns the device of the operation that produced `h`. If `h` was produced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		}
    	}
    }
    
    type dumpReader struct {
    	s  *bufio.Scanner
    	t  *testing.T
    	p  string
    	ln int
    }
    
    // readDump reads in the contents of a dump file produced
    // by the "-d=dumpinlfuncprops=..." command line flag by the Go
    // compiler. It breaks the dump down into separate sections
    // by function, then deserializes each func section into a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Missing dependencies between tasks
    
    Having a task which produces an output in a location and another task consuming that location by referring to it as an input without the consumer task depending on the producer task has been deprecated.
    A fix for this problem is to <<incremental_build.adoc#sec:link_output_dir_to_input_files,add a dependency from the consumer to the producer>>.
    
    [[duplicates-strategy]]
    ==== Duplicates strategy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

         * This includes classifying its attributes into lists of compatible, incompatible, and absent attributes.  Each candidate
         * is assessed within the context of a resolution, but must not reference the assessor
         * that produced it, in order to remain configuration cache compatible - the assessor is not serializable.
         */
        public static final class AssessedCandidate implements Describable {
            private final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

     * <p>
     * The «path-base» param is optional.
     * If invoked as `-Dorg.gradle.internal.operations.trace`, a base value of "operations" will be used.
     * <p>
     * The “trace” produced here is different to the trace produced by Gradle Profiler.
     * There, the focus is analyzing the performance profile.
     * Here, the focus is debugging/developing the information structure of build operations.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * acquire(10) request arriving. We serve the request partly from storedPermits, using all the
       * remaining 7.0 permits, and the remaining 3.0, we serve them by fresh permits produced by the
       * rate limiter.
       *
       * We already know how much time it takes to serve 3 fresh permits: if the rate is
       * "1 token per second", then this will take 3 seconds. But what does it mean to serve 7 stored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

      %0 = tf_executor.graph {
        %1:3 = tf_executor.NextIteration.Source : tensor<*xf32>
    // expected-error@-1 {{'tf_executor.NextIteration.Source' op expects a single user for produced token}}
        tf_executor.fetch %1#0 : tensor<*xf32>
      }
      func.return %0 : tensor<*xf32>
    }
    
    // -----
    
    func.func @invalid_nextiteration(%arg0: tensor<*xf32>) -> tensor<*xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            conventionMapping.map("signatureType", this::getSignatureType);
            conventionMapping.map("required", this::isRequired);
        }
    
        /**
         * Creates signing tasks that depend on and sign the "archive" produced by the given tasks.
         *
         * <p>The created tasks will be named "sign<i>&lt;input task name capitalized&gt;</i>". That is, given a task with the name "jar" the created task will be named "signJar". <p> If the task is not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
Back to top