Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,606 for message2 (0.26 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Message.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * A message sent between daemon client and daemon server.
     */
    public class Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 755 bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

    import java.io.OutputStream;
    
    public abstract class Message {
        /**
         * Serialize the <code>message</code> onto the provided <code>outputStream</code>, replacing all {@link Throwable}s in the object graph with a placeholder object that can be read back by {@link
         * #receive(java.io.InputStream, ClassLoader)}.
         *
         * @param message object to serialize
         * @param outputSteam stream to serialize onto
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	}
    }
    
    // NewInternalError returns a new diag.Message based on InternalError.
    func NewInternalError(r *resource.Instance, detail string) diag.Message {
    	return diag.NewMessage(
    		InternalError,
    		r,
    		detail,
    	)
    }
    
    // NewDeprecated returns a new diag.Message based on Deprecated.
    func NewDeprecated(r *resource.Instance, detail string) diag.Message {
    	return diag.NewMessage(
    		Deprecated,
    		r,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    class GTEST_API_ Message {
     private:
      // The type of basic IO manipulators (endl, ends, and flush) for
      // narrow streams.
      typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
    
     public:
      // Constructs an empty Message.
      Message();
    
      // Copy constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    class GTEST_API_ Message {
     private:
      // The type of basic IO manipulators (endl, ends, and flush) for
      // narrow streams.
      typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
    
     public:
      // Constructs an empty Message.
      Message();
    
      // Copy constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

    # Please keep entries ordered by code.
    # NOTE: The range 0000-0100 is reserved for internal and/or future use.
    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. cmd/bootstrap-messages.go

    	}
    	bs.mu.RUnlock()
    
    	return traceInfo
    }
    
    func (bs *bootstrapTracer) Publish(ctx context.Context, trace *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]) {
    	for _, bsEvent := range bs.Events() {
    		if bsEvent.Message != "" {
    			select {
    			case <-ctx.Done():
    			default:
    				trace.Publish(bsEvent)
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/message.go

    Alexander Zielenski <******@****.***> 1705543770 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

     * a greeting. The greeting is composed of a message and a suffix. The message is compiled into a support
     * library. The suffix is compiled directly into the processor. This makes it easy to test different incremental
     * change scenarios. The message can also be provided with the -Amessage processor argument.
     */
    @CompileStatic
    class HelperProcessorFixture extends AnnotationProcessorFixture {
        String message = "greetings"
        boolean writeResources
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top