Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,064 for reasons (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

        @Override
        public void discardAll() {
            outputHierarchy.clear();
            destroyableHierarchy.clear();
        }
    
        /**
         * Create the input node access hierarchy.
         *
         * For performance reasons, we keep one input node access hierarchy per project,
         * so we only have a factory method here and this is used to create the hierarchy in {@link org.gradle.execution.ProjectExecutionServices}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/ResolvedComponentResultInternal.java

         * may not include all the variants returned by {@link #getVariants()}.
         *
         * <p>
         * Note: for performance reasons,
         * {@link org.gradle.api.internal.artifacts.configurations.ResolutionStrategyInternal#setIncludeAllSelectableVariantResults(boolean)}
         * must be set to {@code true} for this to actually return all variants in all cases.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            captureResults[1].assertTaskExecuted(':capture2')
    
            cleanup:
            daemon?.abort()
        }
    
        def "a daemon expiration listener receives expiration reasons continuous:#continuous"() {
            given:
            buildFile << """
               ${imports()}
               ${registerTestExpirationStrategy()}
               ${registerExpirationListener()}
               ${waitForExpirationTask()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. test/codegen/README

    special syntax (described below). The test driver is implemented as
    an action within the GOROOT/test test suite, called "asmcheck".
    
    The codegen harness is part of the all.bash test suite, but for
    performance reasons only the codegen tests for the host machine's
    GOARCH are enabled by default, and only on GOOS=linux.
    
    To perform comprehensive tests for all the supported architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/internal/nettrace/nettrace.go

    	// DNSDone is called after a DNS lookup completes (or fails).
    	// The coalesced parameter is whether singleflight de-duped
    	// the call. The addrs are of type net.IPAddr but can't
    	// actually be for circular dependency reasons.
    	DNSDone func(netIPs []any, coalesced bool, err error)
    
    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface_test.go

    			want: false,
    		},
    		{
    			name: "one status should be equal to itself",
    			x:    errorStatus,
    			y:    errorStatus,
    			want: true,
    		},
    		{
    			name: "same type statuses without reasons should be equal",
    			x:    NewStatus(Success),
    			y:    NewStatus(Success),
    			want: true,
    		},
    		{
    			name: "statuses with same message should be equal",
    			x:    NewStatus(Unschedulable, "unschedulable"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 22 04:41:59 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

         *
         * <b>IMPLEMENTATION NOTE</b>
         * We do it this way instead of the way recommended in <a href="https://snyk.io/research/zip-slip-vulnerability"></a>
         * for performance reasons, calling {@link File#getCanonicalPath()} is too expensive.
         *
         * @throws IllegalArgumentException if the entry contains vulnerable sequences
         */
        public static String safePathName(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.utils.Os;
    
    /**
     * Assists the project builder. <strong>Warning:</strong> This is an internal utility class that is only public for
     * technical reasons, it is not part of the public API. In particular, this class can be changed or deleted without
     * prior notice.
     *
     * @since 3.0
     */
    public class EnvironmentUtils {
    
        private static Properties envVars;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/DefaultWorkValidationWarningRecorder.java

                .map(warning -> "\n  - " + warning)
                .distinct()
                .collect(joining());
            LOGGER.warn("Execution optimizations have been disabled for {} to ensure correctness due to the following reasons:{}", work.getDisplayName(), uniqueWarnings);
    
            warnings.forEach(warning -> {
                withDocumentation(warning, deprecateBehaviour(convertToSingleLine(renderMinimalInformationAbout(warning, false, false)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultLegacySupport.java

    /**
     * Helps to provide backward-compatibility with plugins that use legacy components. <strong>Warning:</strong> This is an
     * internal utility component that is only public for technical reasons, it is not part of the public API. In
     * particular, this component can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class DefaultLegacySupport implements LegacySupport {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top