Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,135 for produced (0.27 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformSpec.java

         *
         * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
         */
        AttributeContainer getFrom();
    
        /**
         * Attributes that match the variant that is produced.
         *
         * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
         */
        AttributeContainer getTo();
    
        /**
         * The parameters for the transform action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue24693.dir/b.go

    // the test case below, at the call to b.F2(b.T{}) in c.go, the
    // interface method set is sorted as { a.m(); b.m() }.
    //
    // However, while compiling package b, its package path is set to "",
    // so the code produced for F2 uses { b.m(); a.m() } as the method set
    // order. So again, it ends up calling the wrong method.
    //
    // Also, this function is marked noinline because it's critical to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentResult.java

         *
         * <ul>
         *     <li>{@link org.gradle.api.artifacts.component.ProjectComponentIdentifier} for those component instances which are produced by the current build.</li>
         *     <li>{@link org.gradle.api.artifacts.component.ModuleComponentIdentifier} for those component instances which are found in some repository.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 28 14:22:52 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.binaryinfo
    /**
     * Binary information for GCC produced binaries. It approximate features required by our tests using dumpbin.exe from Visual Studio. It's not the right solution, but it works for most cases.
     */
    class DumpbinGccProducedBinaryInfo extends DumpbinBinaryInfo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ReachingAcrossProjectBoundariesIntegrationTest.groovy

        // This tests current behaviour, not desired behaviour
        @UnsupportedWithConfigurationCache(because = "Task does not declare that it uses the transform outputs")
        def "can consume transform outputs produced by another project without declaring this access"() {
            createDirs("a", "b", "sneaky")
            settingsFile << """
                include 'a', 'b', 'sneaky'
            """
            setupBuildWithColorTransformImplementation()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

    /**
     * A container of {@link Report} objects, that represent potential reports.
     * <p>
     * Things that produce reports (typically tasks) expose a report container that contains {@link Report} objects for each
     * possible report that they can produce. Each report object can be configured individually, including whether or not it should
     * be produced by way of its {@link Report#getRequired()} required} property.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenNormalizedPublication.java

            if (mainArtifact != null && !((PublicationArtifactInternal) mainArtifact).shouldBePublished()) {
                throw new IllegalStateException("Artifact " + mainArtifact.getFile().getName() + " wasn't produced by this build.");
            }
            return mainArtifact;
        }
    
        public Set<MavenArtifact> getAdditionalArtifacts() {
            return allArtifacts.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

     public:
      // Constructs a diagnostic handler in a context. If propagate is true, then
      // diagnostics reported are also propagated back to the original diagnostic
      // handler.  If filter_stack is true, a reduced stack will be produced.
    
      explicit StatusScopedDiagnosticHandler(MLIRContext* context,
                                             bool propagate = false,
                                             bool filter_stack = false);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeToolChainInternal.java

         */
        PlatformToolProvider select(NativeLanguage sourceLanguage, NativePlatformInternal targetMachine);
    
        /**
         * Returns a unique, opaque, output type for the output produced by this toolchain on the current operating system.
         */
        String getOutputType();
    
        void assertSupported();
    
        class Identifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/BuildTreeLocalComponentProvider.java

    import org.gradle.util.Path;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A provider of dependency resolution metadata for local components produced by any build in the build tree.
     *
     * <p>In general, you should be using {@link LocalComponentRegistry} instead of this type, as it is scoped
     * to a build and will call the appropriate method on this provider.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top