Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 333 for message1 (0.51 sec)

  1. src/mime/multipart/writer.go

    package multipart
    
    import (
    	"bytes"
    	"crypto/rand"
    	"errors"
    	"fmt"
    	"io"
    	"net/textproto"
    	"slices"
    	"strings"
    )
    
    // A Writer generates multipart messages.
    type Writer struct {
    	w        io.Writer
    	boundary string
    	lastpart *part
    }
    
    // NewWriter returns a new multipart [Writer] with a random boundary,
    // writing to w.
    func NewWriter(w io.Writer) *Writer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
            models[":"][0].message == "fetch1 It works from project :"
            models[":"][1].message == "fetch2 It works from project :"
            models[":"][2].message == "fetch1 It works from project :"
            models[":"][3].message == "fetch2 It works from project :"
    
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

        interface Builder {
            /**
             * Creates an InvalidUserCodeException for this problem, with the given message.
             */
            fun exception(message: String): Builder
    
            /**
             * Creates an InvalidUserCodeException for this problem, with a message derived from the problem message.
             */
            fun exception(builder: (String) -> String): Builder
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestFailureDetails.java

                return false;
            }
            if (isFileComparisonTestAssertionFailure != that.isFileComparisonTestAssertionFailure) {
                return false;
            }
            if (message != null ? !message.equals(that.message) : that.message != null) {
                return false;
            }
            if (className != null ? !className.equals(that.className) : that.className != null) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

                    .append("' ");
            }
            return builder.toString();
        }
    
        // A heuristic to determine if the type is relevant or not.
        // The "DefaultTask" type may appear in error messages
        // (if using "adhoc" tasks) but isn't visible to this
        // class so we have to rely on text matching for now.
        private static boolean shouldRenderType(String className) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

    import java.util.Objects;
    
    public class DescriptiveChange implements Change {
        private final String message;
    
        @FormatMethod
        public DescriptiveChange(String message, Object... params) {
            this.message = String.format(message, params);
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        @Override
        public String toString() {
            return getMessage();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestOutputEvent.java

    public class DefaultTestOutputEvent implements TestOutputEvent {
    
        private final Destination destination;
        private final String message;
    
        @UsedByScanPlugin("test-distribution")
        public DefaultTestOutputEvent(Destination destination, String message) {
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public Destination getDestination() {
            return destination;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

        private transient Factory<String> messageFactory;
        private String message;
    
        public DefaultMultiCauseException(String message) {
            super(message);
            this.message = message;
        }
    
        public DefaultMultiCauseException(String message, Throwable... causes) {
            super(message);
            this.message = message;
            this.causes.addAll(Arrays.asList(causes));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        <T> T selectOutputWithFailureLogging(T stdout, T stderr);
    
        /**
         * Returns true if this version logs different build outcome messages for tooling API requests that run tasks and to requests that do not run tasks (eg fetch a model).
         */
        boolean isToolingApiLogsConfigureSummary();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            when:
            withConnection {
                it.action(new ActionShouldNotBeCalled()).run()
            }
    
            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')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top