Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 274 for prepending (0.25 sec)

  1. samples/tcp-echo/README.md

        hello world
        pod "dummy" deleted
        ```
    
        As you observe, sending _world_ on a TCP connection to the server results in
        the server prepending _hello_ and echoing back with _hello world_.
    
    1. To clean up, execute the following command:
    
        ```console
        $ kubectl delete -f tcp-echo.yaml
        service "tcp-echo" deleted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

    public class PBXReference extends PBXContainerItem implements Named {
        private final String name;
        @Nullable
        private String path;
        /**
         * The "base" path of the reference. The absolute path is resolved by prepending the resolved
         * base path.
         */
        private SourceTree sourceTree;
    
        public PBXReference(String name, @Nullable String path, SourceTree sourceTree) {
            this.name = Preconditions.checkNotNull(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	w io.Writer
    	h [4]byte
    }
    
    func NewLengthDelimitedFrameWriter(w io.Writer) io.Writer {
    	return &lengthDelimitedFrameWriter{w: w}
    }
    
    // Write writes a single frame to the nested writer, prepending it with the length
    // in bytes of data (as a 4 byte, bigendian uint32).
    func (w *lengthDelimitedFrameWriter) Write(data []byte) (int, error) {
    	binary.BigEndian.PutUint32(w.h[:], uint32(len(data)))
    	n, err := w.w.Write(w.h[:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/resetconfiguration.go

    		if !strings.HasPrefix(cfg.CRISocket, kubeadmapiv1.DefaultContainerRuntimeURLScheme) {
    			klog.Warningf("Usage of CRI endpoints without URL scheme is deprecated and can cause kubelet errors "+
    				"in the future. Automatically prepending scheme %q to the \"criSocket\" with value %q. "+
    				"Please update your configuration!", kubeadmapiv1.DefaultContainerRuntimeURLScheme, cfg.CRISocket)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/syscall/dir_plan9.go

    func pbit64(b []byte, v uint64) []byte {
    	byteorder.LePutUint64(b, v)
    	return b[8:]
    }
    
    // pstring copies the string s to b, prepending it with a 16-bit length in little-endian order, and
    // returning the remaining slice of b..
    func pstring(b []byte, s string) []byte {
    	b = pbit16(b, uint16(len(s)))
    	n := copy(b, s)
    	return b[n:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/gover.go

    // It also provides some helpers for extracting versions from go.mod files
    // and for dealing with module.Versions that may use Go versions or semver
    // depending on the module path.
    package gover
    
    import (
    	"internal/gover"
    )
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as toolchain versions.
    // The versions x and y must not begin with a "go" prefix: just "1.21" not "go1.21".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/math/const.go

    )
    
    // Integer limit values.
    const (
    	intSize = 32 << (^uint(0) >> 63) // 32 or 64
    
    	MaxInt    = 1<<(intSize-1) - 1  // MaxInt32 or MaxInt64 depending on intSize.
    	MinInt    = -1 << (intSize - 1) // MinInt32 or MinInt64 depending on intSize.
    	MaxInt8   = 1<<7 - 1            // 127
    	MinInt8   = -1 << 7             // -128
    	MaxInt16  = 1<<15 - 1           // 32767
    	MinInt16  = -1 << 15            // -32768
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Returns true if this resource exists, false if it does not exist. A resource exists when it has content associated with it.
         *
         * <p>Note that this method may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
         * @return true if this resource exists.
         * @throws ResourceException On failure to check whether resource exists.
         */
        boolean getExists() throws ResourceException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

    public fun interface KotlinCodeFragmentContextModificationListener {
        /**
         * [onModification] is invoked in a write action before or after a context change for code fragments depending on the [module].
         *
         * All code fragments depending on [module], both directly or transitively, should be considered modified when this event is received.
         *
         * @see KotlinModificationTopics
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

         *
         * <p>Removes System.out and System.err as logging destinations, if present, as a side-effect.
         *
         * @param outputStream Receives formatted output.
         * @param errorStream Receives formatted error output. Note that this steam may not necessarily be used, depending on the console mode requested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top