Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,984 for hasX (0.11 sec)

  1. src/fmt/scan.go

    	imagSign := string(s.buf)
    	imag = s.floatToken()
    	if !s.accept("i") {
    		s.error(errComplex)
    	}
    	if parens && !s.accept(")") {
    		s.error(errComplex)
    	}
    	return real, imagSign + imag
    }
    
    func hasX(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] == 'x' || s[i] == 'X' {
    			return true
    		}
    	}
    	return false
    }
    
    // convertFloat converts the string to a float64value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/hash.go

    	}
    	h.Write(hashSalt)
    	if verify {
    		h.buf = new(bytes.Buffer)
    	}
    	return h
    }
    
    // Write writes data to the running hash.
    func (h *Hash) Write(b []byte) (int, error) {
    	if debugHash {
    		fmt.Fprintf(os.Stderr, "HASH[%s]: %q\n", h.name, b)
    	}
    	if h.buf != nil {
    		h.buf.Write(b)
    	}
    	return h.h.Write(b)
    }
    
    // Sum returns the hash of the data written previously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 16:18:34 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  3. pkg/util/hash/hash.go

    limitations under the License.
    */
    
    package hash
    
    import (
    	"fmt"
    	"hash"
    
    	"k8s.io/apimachinery/pkg/util/dump"
    )
    
    // DeepHashObject writes specified object to hash using the spew library
    // which follows pointers and prints actual values of the nested objects
    // ensuring the hash does not change when a pointer changes.
    func DeepHashObject(hasher hash.Hash, objectToWrite interface{}) {
    	hasher.Reset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 998 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    // to allow verifying that a newly-downloaded module has the expected content.
    package dirhash
    
    import (
    	"archive/zip"
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    )
    
    // DefaultHash is the default hash function used in new go.sum entries.
    var DefaultHash Hash = Hash1
    
    // A Hash is a directory hash function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/hash/hash.go

    // Package hash provides interfaces for hash functions.
    package hash
    
    import "io"
    
    // Hash is the common interface implemented by all hash functions.
    //
    // Hash implementations in the standard library (e.g. [hash/crc32] and
    // [crypto/sha256]) implement the [encoding.BinaryMarshaler] and
    // [encoding.BinaryUnmarshaler] interfaces. Marshaling a hash implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/util/hash/hash.go

    // limitations under the License.
    
    package hash
    
    import (
    	"encoding/hex"
    
    	"github.com/cespare/xxhash/v2"
    )
    
    type Hash interface {
    	Write(p []byte) (n int)
    	WriteString(s string) (n int)
    	Sum() string
    	Sum64() uint64
    }
    
    type instance struct {
    	hash *xxhash.Digest
    }
    
    var _ Hash = &instance{}
    
    func New() Hash {
    	return &instance{
    		hash: xxhash.New(),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 20:24:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. proguard/hash.pro

    -dontwarn sun.misc.Unsafe
    
    # Striped64 appears to make some assumptions about object layout that
    # really might not be safe. This should be investigated.
    -keepclassmembers class com.google.common.hash.Striped64 {
      *** base;
      *** busy;
    }
    -keepclassmembers class com.google.common.hash.Striped64$Cell {
      <fields>;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 351 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_list_issue61415.txt

    cp stdout has-nested.json
    stdout '"Origin":'
    stdout '"VCS": "git"'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "refs/tags/has-nested"'
    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetReadsTester.java

      public void testEntrySet_hashCode_size0() {
        assertEquals(
            "multiset.entrySet() has incorrect hash code", 0, getMultiset().entrySet().hashCode());
      }
    
      @CollectionSize.Require(ONE)
      public void testEntrySet_hashCode_size1() {
        assertEquals(
            "multiset.entrySet() has incorrect hash code",
            1 ^ e0().hashCode(),
            getMultiset().entrySet().hashCode());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/MultisetReadsTester.java

      public void testEntrySet_hashCode_size0() {
        assertEquals(
            "multiset.entrySet() has incorrect hash code", 0, getMultiset().entrySet().hashCode());
      }
    
      @CollectionSize.Require(ONE)
      public void testEntrySet_hashCode_size1() {
        assertEquals(
            "multiset.entrySet() has incorrect hash code",
            1 ^ e0().hashCode(),
            getMultiset().entrySet().hashCode());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.9K bytes
    - Viewed (0)
Back to top