Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,373 for massage (0.51 sec)

  1. cmd/import-boss/main.go

    			// NOTE: This syntax can be undone with unmassage().
    			pkg.PkgPath = strings.TrimSuffix(pkg.PkgPath, "_test") + " ((tests:" + pkg.Name + "))"
    			klog.V(3).Infof("renamed to: %q", pkg.PkgPath)
    		}
    		out = append(out, pkg)
    	}
    
    	return out
    }
    
    func unmassage(str string) string {
    	idx := strings.LastIndex(str, " ((")
    	if idx == -1 {
    		return str
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/encoding/gob/encoder.go

    	// Space has been reserved for the length at the head of the message.
    	// This is a little dirty: we grab the slice from the bytes.Buffer and massage
    	// it by hand.
    	message := b.Bytes()
    	messageLen := len(message) - maxLength
    	// Length cannot be bigger than the decoder can handle.
    	if messageLen >= tooBig {
    		enc.setError(errors.New("gob: encoder: message too big"))
    		return
    	}
    	// Encode the length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"martial_arts_uniform":                 "\U0001f94b",
    	"martinique":                           "\U0001f1f2\U0001f1f6",
    	"mask":                                 "\U0001f637",
    	"massage":                              "\U0001f486",
    	"massage_man":                          "\U0001f486\u200d\u2642\ufe0f",
    	"massage_woman":                        "\U0001f486\u200d\u2640\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/diag/message.go

    func (m *MessageType) Code() string { return m.code }
    
    // Template returns the message template used by the MessageType
    func (m *MessageType) Template() string { return m.template }
    
    // Message is a specific diagnostic message
    // TODO: Implement using Analysis message API
    type Message struct {
    	Type *MessageType
    
    	// The Parameters to the message
    	Parameters []any
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. internal/s3select/message.go

    	207, 151, 211, 146, // message crc.
    }
    
    // newErrorMessage - creates new Request Level Error Message. S3 sends this message if the request failed for any reason.
    // It contains the error code and error message for the failure. If S3 sends a RequestLevelError message,
    // it doesn't send an End message.
    //
    // Header specification:
    // Request-level error messages contain three headers, as follows:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/data/Message.java

    package org.gradle.sample.app.data;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class Message {
        private String message;
        private List<String> receivers = new ArrayList<>();
    
        public String getMessage() {
            return message;
        }
    
        public void setMessage(String message) {
            this.message = message;
        }
    
        public List<String> getReceivers() {
            return receivers;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 670 bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Message.java

    /**
     * @author mbechler
     *
     */
    public interface Message {
    
        /**
         * Indicate that this message should retain it's raw payload
         */
        void retainPayload ();
    
    
        /**
         * 
         * @return whether to retain the message payload
         */
        boolean isRetainPayload ();
    
    
        /**
         * 
         * @return the raw response message
         */
        byte[] getRawPayload ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. 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)
  9. src/vendor/golang.org/x/net/route/message.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package route
    
    // A Message represents a routing message.
    type Message interface {
    	// Sys returns operating system-specific information.
    	Sys() []Sys
    }
    
    // A Sys reprensents operating system-specific information.
    type Sys interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top