Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for new404 (0.1 sec)

  1. doc/next/6-stdlib/99-minor/crypto/sha256/62384.md

    The values returned by [sha256.New] and [sha256.New224] now also implement the [encoding.BinaryAppender] interface...
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 01 14:57:46 UTC 2024
    - 115 bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/crypto/sha512/62384.md

    The values returned by [sha512.New], [sha512.New384], [sha512.New512_224] and [sha512.New512_256] now also implement the [encoding.BinaryAppender] interface....
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 01 14:57:46 UTC 2024
    - 158 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/hash/fnv/62384.md

    The values returned by [New32], [New32a], [New64], [New64a], [New128] and [New128a] now also implement the [encoding.BinaryAppender] interface....
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 07 17:23:15 UTC 2024
    - 144 bytes
    - Viewed (0)
  4. tests/hooks_test.go

    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	// Code changed, price should changed
    	DB.Model(&product).Select("Name", "Code", "Price").Updates(Product3{Name: "Product New4", Code: ""})
    	if product.Name != "Product New4" || product.Price != 320 || product.Code != "" {
    		t.Errorf("invalid data after update, got %+v", product)
    	}
    
    	DB.Model(&product).UpdateColumns(Product3{Code: "L1215"})
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Jun 17 03:59:06 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top