Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for NORMALIZED (0.34 sec)

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

            Map<String, Dependency> normalized = new LinkedHashMap<>(dependencies.size() * 2);
    
            for (Dependency dependency : dependencies) {
                normalized.put(dependency.getManagementKey(), dependency);
            }
    
            if (dependencies.size() != normalized.size()) {
                builder.dependencies(normalized.values());
            }
    
            return builder.build();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

         *
         * <p>Error messages are normalized to use new-line char as line separator.
         *
         * @return this
         */
        ExecutionFailure assertHasFailure(String description, Consumer<? super Failure> action);
    
        /**
         * Asserts that there is a failure present with the given cause (ie the bit after the description).
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java

                && getEnableAssertions() == options.getEnableAssertions()
                && normalized(getExecutable()).equals(normalized(options.getExecutable()))
                && getWorkingDir().equals(options.getWorkingDir())
                && normalized(getDefaultCharacterEncoding()).equals(normalized(options.getDefaultCharacterEncoding()))
                && getHeapSizeMb(getMinHeapSize()) >= getHeapSizeMb(options.getMinHeapSize())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

            merged.setMemoryMaximumSize(mergeHeapSize(left.getMemoryMaximumSize(), right.getMemoryMaximumSize()));
            Set<String> mergedJvmArgs = normalized(left.getJvmArgs());
            mergedJvmArgs.addAll(normalized(right.getJvmArgs()));
            merged.setJvmArgs(Lists.newArrayList(mergedJvmArgs));
            return merged;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    > Task :app:test
    > Task :app:check
    > Task :app:build
    
    BUILD SUCCESSFUL in 0s
    7 actionable tasks: 7 executed
    """.trim()
    
            when:
            String normalized = outputNormalizer.normalize(input, executionMetadata)
    
            then:
            normalized == expected
        }
    
        def "successfully normalizes Scala compiler warning"() {
            given:
            String input = """
    > Task :app:compileJava NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

        /**
         * Stdout of the Gradle execution, normalized to use new-line char as line separator.
         *
         * <p>You should avoid using this method as it couples the tests to a particular layout for the console. Instead use the more descriptive assertion methods on this class.</p>
         */
        String getOutput();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/main/main
    """
    
            when:
            String normalized = outputNormalizer.normalize(input, executionMetadata)
    
            then:
            normalized == expected
        }
    
        def "successfully normalizes windows output"() {
            given:
            String input = """
    > Task :components
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/math/big/bits_test.go

    //
    // The order of slice elements is not significant. Negative elements may be
    // used to form fractions. A Bits value is normalized if each b[i] occurs at
    // most once. For instance Bits{0, 0, 1} is not normalized but represents the
    // same floating-point number as Bits{2}, which is normalized. The zero (nil)
    // value of Bits is a ready to use Bits value and represents the value 0.
    type Bits []int
    
    func (x Bits) add(y Bits) Bits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

        }
    
    fun configureDistribution(name: String, distributionSpec: CopySpec, buildDistLifecycleTask: TaskProvider<Task>, normalized: Boolean = false) {
        val disDir = if (normalized) "normalized-distributions" else "distributions"
        val zipRootFolder = if (normalized) {
            moduleIdentity.version.map { "gradle-${it.baseVersion.version}" }
        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top