Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,343 for detects (0.13 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasher.java

    import java.io.IOException;
    import java.util.Optional;
    
    /**
     * A {@link FileSystemLocationSnapshotHasher} that normalizes line endings while hashing the file.  It detects whether a file is text or binary and only
     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.CompiledLanguage
    import spock.lang.Issue
    
    abstract class AbstractCrossTaskIncrementalCompilationIntegrationTest extends AbstractCrossTaskIncrementalCompilationSupport {
    
        def "detects change to dependency and ensures class dependency info refreshed"() {
            source api: ["class A {}", "class B extends A {}"]
            source impl: ["class SomeImpl {}", "class ImplB extends B {}", "class ImplB2 extends ImplB {}"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/appends.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package appends defines an Analyzer that detects
    // if there is only one variable in append.
    package appends
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                // Pre-Validate errors halt execution before further problems are detected
            ])
        }
    
        //@IgnoreRest
        def "detects problems on nested collections"() {
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.model.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenMixedDependenciesValidator.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.graph.Dependency;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects mixed Maven versions in plugins.
     *
     * @since 3.9.2
     */
    @Singleton
    @Named
    class MavenMixedDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasher.java

    import java.io.File;
    import java.io.IOException;
    import java.util.Optional;
    
    /**
     * A {@link ResourceHasher} that normalizes line endings while hashing the file.  It detects whether a file is text or binary and only
     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleApplicationScope.java

         */
        SELF,
    
        /**
         * Rule should be applied to the all matching descendant elements of the scope.
         */
        DESCENDANTS;
    
        /**
         * Detects if the subject of the rule has been annotated with {@literal @}{@link Each}.
         *
         * @throws IndexOutOfBoundsException If the rule definition has too few parameters.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/Maven2DependenciesValidator.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.graph.Dependency;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Maven2 plugins.
     *
     * @since 3.9.2
     */
    @Singleton
    @Named
    class Maven2DependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator.java

    import org.apache.maven.plugin.PluginValidationManager;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Plexus Container Default in plugins.
     *
     * @since 3.9.2
     */
    @Singleton
    @Named
    class PlexusContainerDefaultDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            ], [
                "one": fingerprint("one"),
                "three": fingerprint("three"),
                "two": fingerprint("two")
            ]) == []
        }
    
        def "detects no change when only absolute path changes (NormalizedPathFingerprintCompareStrategy)"() {
            expect:
            changes(NORMALIZED, [
                "new-1/one": fingerprint("one"),
                "new-2/one": fingerprint("one"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top