Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for importing (0.17 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
                        validateStringNotEmpty(
                                "reporting.plugins.plugin.artifactId",
                                problems,
                                Severity.ERROR,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
                        validateStringNotEmpty(
                                "reporting.plugins.plugin.artifactId",
                                problems,
                                Severity.ERROR,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' +
    				'li.jstree-open ul { display:block; } ' +
    				'li.jstree-closed ul { display:none !important; } ' +
    				'.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' +
    				'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
    				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
    		}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                }
            }
            return Collections.unmodifiableList(list);
        }
    
        @Deprecated
        public void setReporting(Reporting reporting) {
            getModel().setReporting(reporting);
        }
    
        @Deprecated
        public Reporting getReporting() {
            return getModel().getReporting();
        }
    
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		bgwait(&wg)
    	}
    
    	// Build an importcfg file for the compiler.
    	buf := &bytes.Buffer{}
    	for _, imp := range sortedImports {
    		if imp == "unsafe" {
    			continue
    		}
    		dep := importMap[imp]
    		if imp != dep {
    			fmt.Fprintf(buf, "importmap %s=%s\n", imp, dep)
    		}
    		fmt.Fprintf(buf, "packagefile %s=%s\n", dep, packagefile(dep))
    	}
    	importcfg := pathf("%s/importcfg", workdir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ===== mergeReruns
    
    When `mergeReruns` is enabled, if a test fails but is then retried and succeeds, its failures will be recorded as `<flakyFailure>` instead of `<failure>`, within one `<testcase>`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (wasCancelled) {
            return new Cancellation(
                false,
                new IllegalArgumentException(
                    "get() did not throw CancellationException, despite reporting "
                        + "isCancelled() == true: "
                        + future));
          }
          return v == null ? NULL : v;
        } catch (ExecutionException exception) {
          if (wasCancelled) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (wasCancelled) {
            return new Cancellation(
                false,
                new IllegalArgumentException(
                    "get() did not throw CancellationException, despite reporting "
                        + "isCancelled() == true: "
                        + future));
          }
          return v == null ? NULL : v;
        } catch (ExecutionException exception) {
          if (wasCancelled) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It provides methods to retrieve paths to the project directory, build directory, settings file, and other important locations within the project's file structure.
    This class is particularly useful when you need to work with files in a build script or plugin in different project paths:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.reporting.GenerateBuildDashboard.getInputReports()> has arguments/return type org.gradle.api.reporting.GenerateBuildDashboard$ReportState that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateBuildDashboard.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top