Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 202 for shorterOf (0.22 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    			}
    		}
    	})
    	return nil, nil
    }
    
    func isAttr(t types.Type) bool {
    	return analysisutil.IsNamedType(t, "log/slog", "Attr")
    }
    
    // shortName returns a name for the function that is shorter than FullName.
    // Examples:
    //
    //	"slog.Info" (instead of "log/slog.Info")
    //	"slog.Logger.With" (instead of "(*log/slog.Logger).With")
    func shortName(fn *types.Func) string {
    	var r string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    template<typename T> inline
    bool operator!=(T* ptr, const linked_ptr<T>& x) {
      return ptr != x.get();
    }
    
    // A function to convert T* into linked_ptr<T>
    // Doing e.g. make_linked_ptr(new FooBarBaz<type>(arg)) is a shorter notation
    // for linked_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))
    template <typename T>
    linked_ptr<T> make_linked_ptr(T* ptr) {
      return linked_ptr<T>(ptr);
    }
    
    }  // namespace internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. pkg/envoy/agent.go

    //  3. SIGTERM. We will drain, wait termination drain duration, then exit. This is the standard pod shutdown; SIGTERM arrives when pod shutdown starts.
    //     If the pod's terminationGracePeriod is shorter than our drain duration (rare), we may be a SIGKILL.
    //  4. /drain + SIGTERM. This is the shutdown when using Kubernetes native sidecars.
    //     /drain is called when the pod shutdown starts. We start draining, forever.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/SignedBytes.java

       * compares, using {@link #compare(byte, byte)}), the first pair of values that follow any common
       * prefix, or when one array is a prefix of the other, treats the shorter array as the lesser. For
       * example, {@code [] < [0x01] < [0x01, 0x80] < [0x01, 0x7F] < [0x02]}. Values are treated as
       * signed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http2/hpack/encode.go

    }
    
    // appendHpackString appends s, as encoded in "String Literal"
    // representation, to dst and returns the extended buffer.
    //
    // s will be encoded in Huffman codes only when it produces strictly
    // shorter byte string.
    func appendHpackString(dst []byte, s string) []byte {
    	huffmanLength := HuffmanEncodeLength(s)
    	if huffmanLength < uint64(len(s)) {
    		first := len(dst)
    		dst = appendVarInt(dst, 7, huffmanLength)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p384.go

    	}
    	return nil
    }
    
    // Bytes returns the uncompressed or infinity encoding of p, as specified in
    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P384Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p384ElementLength]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256.go

    	}
    	return nil
    }
    
    // Bytes returns the uncompressed or infinity encoding of p, as specified in
    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p256ElementLength]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

                sb.append(HEX_DIGITS[(b >> 4) & 0xf]).append(HEX_DIGITS[b & 0xf]);
            }
            return sb;
        }
    
        /**
         * Encodes the hash code into a base-36 string,
         * which yields shorter strings than {@link #toString()}.
         * <p>
         * The compact string retains all the information of the hash.
         * However, it is not intended to be parsed with {@link #fromString(String)}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. pkg/controller/certificates/signer/signer.go

    type signer struct {
    	caProvider *caProvider
    
    	client  clientset.Interface
    	certTTL time.Duration // max TTL; individual requests may request shorter certs by setting spec.expirationSeconds
    
    	signerName           string
    	isRequestForSignerFn isRequestForSignerFunc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. docs/contribute/concurrency.md

     * **RealConnection** is the socket and streams of an HTTP/1 or HTTP/2 connection. These are created on demand to fulfill HTTP requests. They may be reused for many HTTP request/response exchanges. Their lifetime is typically shorter than a connection pool.
    
     * **Exchange** carries a single HTTP request/response pair.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top