Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 361 for sing (0.15 sec)

  1. src/cmd/compile/internal/ssa/value.go

    	// Auxiliary info for this value. The type of this information depends on the opcode and type.
    	// AuxInt is used for integer values, Aux is used for other values.
    	// Floats are stored in AuxInt using math.Float64bits(f).
    	// Unused portions of AuxInt are filled by sign-extending the used portion,
    	// even if the represented value is unsigned.
    	// Users of AuxInt which interpret AuxInt as unsigned (e.g. shifts) must be careful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

      * If you work for a company that wants to allow you to contribute your work, then you'll need to sign a [corporate CLA](https://code.google.com/legal/corporate-cla-v1.0.html).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/public/version.h"
    #include "tensorflow/core/util/dump_graph.h"
    
    namespace tensorflow {
    
    namespace {
    using DeadnessPredicate = DeadnessAnalysis::DeadnessPredicate;
    using jit::DeviceId;
    using jit::DeviceSet;
    
    // The clusters we create here are eventually lowered into an
    // _XlaCompile/_XlaRun pair with a TF executor "fallback" that uses the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    func (sc *http2serverConn) processPing(f *http2PingFrame) error {
    	sc.serveG.check()
    	if f.IsAck() {
    		// 6.7 PING: " An endpoint MUST NOT respond to PING frames
    		// containing this flag."
    		return nil
    	}
    	if f.StreamID != 0 {
    		// "PING frames are not associated with any individual
    		// stream. If a PING frame is received with a stream
    		// identifier field value other than 0x0, the recipient MUST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/SignedBytesTest.java

              .that(ex.getMessage().contains(String.valueOf(value)))
              .isTrue();
        }
      }
    
      public void testCompare() {
        for (byte x : VALUES) {
          for (byte y : VALUES) {
            // Only compare the sign of the result of compareTo().
            int expected = Byte.valueOf(x).compareTo(y);
            int actual = SignedBytes.compare(x, y);
            if (expected == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. cmd/listen-notification-handlers.go

    		if peer == nil {
    			continue
    		}
    		peer.Listen(ctx, mergeCh, values)
    	}
    
    	var (
    		emptyEventTicker <-chan time.Time
    		keepAliveTicker  <-chan time.Time
    	)
    
    	if p := values.Get("ping"); p != "" {
    		pingInterval, err := strconv.Atoi(p)
    		if err != nil {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidQueryParams), r.URL)
    			return
    		}
    		if pingInterval < 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // Valid values are:
      //  "signing", "digital signature", "content commitment",
      //  "key encipherment", "key agreement", "data encipherment",
      //  "cert sign", "crl sign", "encipher only", "decipher only", "any",
      //  "server auth", "client auth",
      //  "code signing", "email protection", "s/mime",
      //  "ipsec end system", "ipsec tunnel", "ipsec user",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      description: The ring/modulo hash load balancer
                                        implements consistent hashing to backend hosts.
                                      properties:
                                        minimumRingSize:
                                          description: The minimum number of virtual nodes
                                            to use for the hash ring.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. cmd/bitrot-streaming.go

    	}
    	if n != len(p) {
    		err = io.ErrShortWrite
    		b.closeWithErr(err)
    	}
    	return n, err
    }
    
    func (b *streamingBitrotWriter) Close() error {
    	// Close the underlying writer.
    	// This will also flush the ring buffer if used.
    	err := b.iow.Close()
    
    	// Wait for all data to be written before returning else it causes race conditions.
    	// Race condition is because of io.PipeWriter implementation. i.e consider the following
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

    #include "tensorflow/lite/string_util.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace TFL {
    namespace {
    
    using ::absl::StatusOr;
    using ::mlir::Builder;
    using ::mlir::quant::QuantizedType;
    using ::tflite::TensorT;
    
    // The buffers in TFLite flatbuffers have their contents stored as a vector of
    // bytes that represent host endianness values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top