Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for contextual (1.78 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseExceptionNoStackTrace.java

    import org.gradle.internal.Factory;
    
    /**
     * A specialized version of multi cause exception that is cheaper to create
     * because we avoid to fill a stack trace, and the message MUST be generated lazily.
     */
    @Contextual
    public class DefaultMultiCauseExceptionNoStackTrace extends DefaultMultiCauseException {
        public DefaultMultiCauseExceptionNoStackTrace(Factory<String> messageFactory) {
            super(messageFactory);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/ResolutionFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * Represents a specific type of failure that can occur during dependency resolution and
     * contains contextual information specific to that type of failure.
     *
     * @implSpec Extending types should be immutable data classes with no nullable fields, they
     * must also be serializable by the configuration cache.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/html/template/doc.go

    defined in the docs for ErrorCode.
    
    HTML templates treat data values as plain text which should be encoded so they
    can be safely embedded in an HTML document. The escaping is contextual, so
    actions can appear within JavaScript, CSS, and URI contexts.
    
    The security model used by this package assumes that template authors are
    trusted, while Execute's data parameter is not. More details are
    provided below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/MetadataResolutionContext.java

         * The cache policy of a repository
         *
         * @return the cache policy
         */
        CachePolicy getCachePolicy();
    
        /**
         * Provides an injecting instantiator, giving access to services potentially contextual to a repository.
         *
         * @return a injecting instantiator
         */
        Instantiator getInjectingInstantiator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

        /**
         * Returns the problem definition.
         *
         * @return the definition
         * @since 8.9
         */
        ProblemDefinition getDefinition();
    
        /**
         * Returns the contextual label.
         *
         * @return the problem label
         * @since 8.9
         */
        ContextualLabel getContextualLabel();
    
        /**
         * Returns the details string.
         *
         * @return the problem details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            when:
            def commandLineExecution = factory.convert([option])
            commandLineExecution.execute(executionListener)
    
            then:
            outputs.stdOut.contains('To see help contextual to the project, use gradle help')
            outputs.stdOut.contains('USAGE: gradle [option...] [task...]')
            outputs.stdOut.contains('--help')
            outputs.stdOut.contains('--some-option')
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            when:
            DeprecationLogger.deprecate("Something").withAdvice("Advice.").withContext("Contextual advice.").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Something has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Contextual advice. Advice."
        }
    
        def "logs deprecated build invocation message"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/artifacts/configurations/NoContextRoleBasedConfigurationCreationRequest.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.util.Collections;
    
    /**
     * An {@link AbstractRoleBasedConfigurationCreationRequest} that does not provide any additional contextual
     * information about the request, and emits generic error messages.
     */
    public final class NoContextRoleBasedConfigurationCreationRequest extends AbstractRoleBasedConfigurationCreationRequest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/html/template/error.go

    	//   pipeline output in Go 1.8 and earlier.
    	//
    	//   In most cases, such as the given example, this error can be resolved by
    	//   simply removing the predefined escaper from the pipeline and letting the
    	//   contextual autoescaper handle the escaping of the pipeline. In other
    	//   instances, where the predefined escaper occurs in the middle of a
    	//   pipeline where subsequent commands expect escaped input, e.g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveDanglingFileReferenceTest.kt

            testServices: TestServices
        ): Collection<ResolveTestCaseContext<KtReference?>> {
            val caretPositions = testServices.expressionMarkerProvider.getAllCarets(mainFile)
    
            val ktPsiFactory = KtPsiFactory.contextual(mainFile, markGenerated = true, eventSystemEnabled = true)
            val fakeKtFile = ktPsiFactory.createFile("fake.kt", mainFile.text)
    
            if (mainModule.testModule.directives.contains(Directives.COPY_RESOLUTION_MODE)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top