Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for BUILDABLE (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

            failure.assertHasCause("""Cannot convert ${displayName} to a task.
    The following types/formats are supported:
      - A String or CharSequence task name or path
      - A Task instance
      - A TaskReference instance
      - A Buildable instance
      - A TaskDependency instance
      - A Provider that represents a task output
      - A Provider instance that returns any of these types
      - A Closure instance that returns any of these types
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

    #if (defined(GOOGLE_CUDA) && GOOGLE_CUDA) || \
        (defined(TENSORFLOW_USE_ROCM) && TENSORFLOW_USE_ROCM)
    
    // TODO(b/282059652): This test currently only runs inside Google because PJRT
    // in GPU device is not buildable in open-source environment. Resolve the issue
    // and enable the test in open-source.
    #if defined(PLATFORM_GOOGLE)
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    #include <vector>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    // MultiplePackageError describes a directory containing
    // multiple buildable Go source files for multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                    if (taskDependencies.isEmpty()) {
                        TreeFormatter formatter = new TreeFormatter();
                        formatter.node("No buildable binaries found");
                        formatter.startChildren();
                        for (BinarySpecInternal binary : notBuildable) {
                            formatter.node(binary.getDisplayName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

                    project.getTargets().add(toGradlePbxTarget(xcodeTarget));
                } else {
                    getLogger().warn("'" + xcodeTarget.getName() + "' component in project '" + projectPath + "' is not buildable.");
                }
                project.getTargets().add(toIndexPbxTarget(xcodeTarget));
    
                if (!xcodeTarget.isUnitTest() && xcodeTarget.getDebugOutputFile().isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/nativeDependents.graphml

                  <y:SmartNodeLabelModel distance="4.0"/>
                </y:LabelModel>
                <y:ModelParameter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <li>A {@link Task}.</li>
     *
     * <li>A {@link TaskDependency} object.</li>
     *
     * <li>A {@link org.gradle.api.tasks.TaskReference} object.</li>
     *
     * <li>A {@link Buildable} object.</li>
     *
     * <li>A {@link org.gradle.api.file.RegularFileProperty} or {@link org.gradle.api.file.DirectoryProperty}.</li>
     *
     * <li>A {@link Provider} object. May contain any of the types listed here.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top