Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for Binary1 (0.22 sec)

  1. internal/grid/connection.go

    	case f.Header.Length <= len7:
    		bts[1] = byte(f.Header.Length)
    		n = 2
    
    	case f.Header.Length <= len16:
    		bts[1] = 126
    		binary.BigEndian.PutUint16(bts[2:4], uint16(f.Header.Length))
    		n = 4
    
    	case f.Header.Length <= len64:
    		bts[1] = 127
    		binary.BigEndian.PutUint64(bts[2:10], uint64(f.Header.Length))
    		n = 10
    
    	default:
    		return ws.ErrHeaderLengthUnexpected
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

    import org.gradle.internal.configuration.problems.StructuredMessageBuilder
    import org.gradle.internal.serialize.Decoder
    import org.gradle.internal.serialize.Encoder
    
    
    /**
     * Binary encoding for type [T].
     */
    interface Codec<T> : EncodingProvider<T>, DecodingProvider<T>
    
    
    interface EncodingProvider<T> {
        suspend fun WriteContext.encode(value: T)
    }
    
    
    interface DecodingProvider<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. internal/grid/muxclient.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    import (
    	"context"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/zeebo/xxh3"
    )
    
    // muxClient is a stateful connection to a remote.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. pkg/envoy/proxy.go

    	"istio.io/istio/pkg/env"
    	common_features "istio.io/istio/pkg/features"
    	"istio.io/istio/pkg/log"
    )
    
    type envoy struct {
    	ProxyConfig
    	extraArgs []string
    }
    
    // Envoy binary flags
    type ProxyConfig struct {
    	LogLevel          string
    	ComponentLogLevel string
    	NodeIPs           []string
    	Sidecar           bool
    	LogAsJSON         bool
    	OutlierLogPath    string
    
    	BinaryPath    string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/test/framework/config.go

    			cfg := cfg
    
    			// TODO(https://github.com/istio/istio/issues/37324): It's currently unsafe
    			// to call istioctl concurrently since it relies on the istioctl library
    			// (rather than calling the binary from the command line) which uses a number
    			// of global variables, which will be overwritten for each call.
    			if err := ik.WaitForConfig(ns, cfg); err != nil {
    				// Get proxy status for additional debugging
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. configure.py

            'can be specified as "x.y" or "compute_xy" to include both virtual and'
            ' binary GPU code, or as "sm_xy" to only include the binary '
            'code.\nPlease note that each additional compute capability '
            'significantly increases your build time and binary size, and that '
            'TensorFlow only supports compute capabilities >= 3.5 [Default is: '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. cmd/data-scanner.go

    	// Load current bloom cycle
    	var cycleInfo currentScannerCycle
    
    	buf, _ := readConfig(ctx, objAPI, dataUsageBloomNamePath)
    	if len(buf) == 8 {
    		cycleInfo.next = binary.LittleEndian.Uint64(buf)
    	} else if len(buf) > 8 {
    		cycleInfo.next = binary.LittleEndian.Uint64(buf[:8])
    		buf = buf[8:]
    		_, err := cycleInfo.UnmarshalMsg(buf)
    		bugLogIf(ctx, err)
    	}
    
    	scannerTimer := time.NewTimer(scannerCycle.Load())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. .bazelrc

    
    # Debug config
    build:dbg -c dbg
    # Only include debug info for files under tensorflow/, excluding kernels, to
    # reduce the size of the debug info in the binary. This is because if the debug
    # sections in the ELF binary are too large, errors can occur. See
    # https://github.com/tensorflow/tensorflow/issues/48919.
    # Users can still include debug info for a specific kernel, e.g. with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/deadcode.go

    				// metadata may be missing.
    				continue
    			}
    			d.mark(s, 0)
    		}
    		d.mark(d.ctxt.mainInittasks, 0)
    		return
    	}
    
    	var names []string
    
    	// In a normal binary, start at main.main and the init
    	// functions and mark what is reachable from there.
    	if d.ctxt.linkShared && (d.ctxt.BuildMode == BuildModeExe || d.ctxt.BuildMode == BuildModePIE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * Returns the transformed bytecode for the {@code className} loaded from {@code protectionDomain} if it is available in the classpath or {@code null} otherwise.
         *
         * @param className the name of the class (in internal binary format, e.g. {@code java/util/List}
         * @param protectionDomain the protection domain of the class
         * @return transformed bytes or {@code null} if there is no transformation for this class
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top