Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for reporting (0.18 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(Boolean.TRUE, pom.getValue("reporting/excludeDefaults"));
            assertPathSuffixEquals("docs", pom.getValue("reporting/outputDirectory"));
    
            assertEquals(1, ((List<?>) pom.getValue("reporting/plugins")).size());
            assertEquals("org.apache.maven.its.plugins", pom.getValue("reporting/plugins[1]/groupId"));
            assertEquals("maven-it-plugin-reporting", pom.getValue("reporting/plugins[1]/artifactId"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-native",
    					"tooling-native",
    					"core-api",
    					"wrapper",
    					"build-events",
    					"reporting",
    					"resources-s3",
    					"diagnostics",
    					"plugins-application",
    					"language-jvm"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 14:29:38 GMT 2024
    - 49.9K bytes
    - Viewed (0)
  3. 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,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K 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
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  5. 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) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        return entryHelper.valueStrength().defaultEquivalence();
      }
    
      // ConcurrentMap methods
    
      @Override
      public boolean isEmpty() {
        /*
         * Sum per-segment modCounts to avoid mis-reporting when elements are concurrently added and
         * removed in one segment while checking another, in which case the table was never actually
         * empty at any point. (The sum ensures accuracy up through at least 1<<31 per-segment
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string name = 1;
    
      // singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            if (depMgmt == null) {
                return model;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            )
    
            val towerContext = FirTowerDataContextProvider.create(firResolveSession, declarationToVisit)
    
            //TODO: collect all usages of available symbols in the file and prevent importing symbols that could introduce name clashes, which
            // may alter the meaning of existing code.
            val collector = ElementsToShortenCollector(
                shortenOptions,
                context,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Enable the accumulation of {@link CacheStats} during the operation of the cache. Without this
       * {@link Cache#stats} will return zero for all statistics. Note that recording stats requires
       * bookkeeping to be performed with each operation, and thus imposes a performance penalty on
       * cache operation.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
Back to top