Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 734 for occurred (0.11 sec)

  1. src/main/resources/CLMessages.properties

    ECL0066=NamingException occurred, because {0}
    ECL0067=NoSuchAlgorithmException occurred, because {0}
    ECL0068=InvalidKeyException occurred, because {0}
    ECL0069=NoSuchPaddingException occurred, because {0}
    ECL0070=Field({1}) of class({0}) not found
    ECL0071=SQLException(Message=[{0}], ErrorCode={1}, SQLState={2}) occurred
    ECL0072=SQLException(SQL=[{0}], Message=[{1}], ErrorCode={2}, SQLState={3}) occurred
    ECL0091=Illegal URL({0})
    Registered: 2024-06-12 12:50
    - Last Modified: 2024-03-07 01:58
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigureEventsErrorIntegrationTest.groovy

            failure.assertHasFailures(2)
            failure.assertHasDescription("A problem occurred evaluating root project 'projectConfigure'.")
                    .assertHasCause("configure")
                    .assertHasFileName("Build file '${buildFile}'")
                    .assertHasLineNumber(6)
            failure.assertHasDescription("A problem occurred configuring root project 'projectConfigure'.")
                    .assertHasCause("afterEvaluate failure")
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-10-05 19:36
    - 6.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            then:
            BuildException e = thrown()
            e.message.startsWith('Could not run build action using')
            e.cause.message.contains('A problem occurred evaluating root project')
    
            and:
            failure.assertHasDescription('A problem occurred evaluating root project')
            assertHasConfigureFailedLogging()
        }
    
        @TargetGradleVersion(">=7.3")
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-05-16 10:10
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

     * of the dependency graph, as well as access to any failures that occurred while
     * building the graph.
     */
    public interface VisitedGraphResults {
    
        /**
         * Returns true if any failures occurred while building these results.
         */
        boolean hasAnyFailure();
    
        /**
         * Visits all failures that occurred while resolving the graph.
         *
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-10-10 21:10
    - 2.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformation.java

        String ROLE = ArtifactTransformation.class.getName();
    
        /**
         * Take in an artifact and return the transformed artifact for locating in the remote repository. If no
         * transformation has occurred the original artifact is returned.
         *
         * @param artifact           Artifact to be transformed.
         * @param request the repositories to check
         */
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-09-06 11:28
    - 3.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformationManager.java

        String ROLE = ArtifactTransformationManager.class.getName();
    
        /**
         * Take in an artifact and return the transformed artifact for locating in the remote repository. If no
         * transformation has occurred the original artifact is returned.
         *
         * @param artifact           Artifact to be transformed.
         * @param request the repositories to check
         */
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-09-06 11:28
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

                    workActionClass = ${failureExecution.name}.class
                }
            """.stripIndent()
    
            when:
            fails("runInWorker")
    
            then:
            failureHasCause("A failure occurred while executing ${failureExecution.name}")
    
            and:
            failureHasCause("Failure from work action")
    
            where:
            isolationMode << ISOLATION_MODES
        }
    
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-22 09:36
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/errors.go

    package mvs
    
    import (
    	"fmt"
    	"strings"
    
    	"golang.org/x/mod/module"
    )
    
    // BuildListError decorates an error that occurred gathering requirements
    // while constructing a build list. BuildListError prints the chain
    // of requirements to the module where the error occurred.
    type BuildListError struct {
    	Err   error
    	stack []buildListErrorElem
    }
    
    type buildListErrorElem struct {
    	m module.Version
    
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-06-01 17:22
    - 3K bytes
    - Viewed (0)
  9. security/pkg/server/ca/monitoring.go

    		"citadel_server_csr_parsing_err_count",
    		"The number of errors occurred when parsing the CSR.",
    	)
    
    	idExtractionErrorCounts = monitoring.NewSum(
    		"citadel_server_id_extraction_err_count",
    		"The number of errors occurred when extracting the ID from CSR.",
    	)
    
    	certSignErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_sign_err_count",
    		"The number of errors occurred when signing the CSR.",
    	)
    
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-05-21 18:32
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/exceptions/LocationAwareException.java

        }
    
        /**
         * <p>Returns the display name of the script where this exception occurred.</p>
         *
         * @return The source display name.
         */
        @Nullable
        public String getSourceDisplayName() {
            return sourceDisplayName;
        }
    
        /**
         * <p>Returns a description of the location of where this exception occurred.</p>
         *
         * @return The location description.
         */
        @Nullable
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-01-12 19:30
    - 3.6K bytes
    - Viewed (0)
Back to top