Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for fnv1 (0.07 sec)

  1. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	"fmt",
    	"go/ast",
    	"go/build",
    	"go/doc",
    	// "go/format", // Added in GCC 4.8.
    	"go/parser",
    	"go/printer",
    	"go/scanner",
    	"go/token",
    	"hash/adler32",
    	"hash/crc32",
    	"hash/crc64",
    	"hash/fnv",
    	"hash",
    	"html",
    	"html/template",
    	"image/color",
    	// "image/color/palette", // Added in GCC 4.9.
    	"image/draw",
    	"image/gif",
    	"image",
    	"image/jpeg",
    	"image/png",
    	"index/suffixarray",
    	"io",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. test/typeparam/issue48191.go

    			}(m1[<-m5[G1(37)*i8_1<<i8_1%p2.i8_0]][i2].m0[p1], m1[<-ch0][55&i2/i2^i].m0[func(G3, float64) G2 {
    				return G2(619.2)
    			}(G3(""), 954.0)])
    		}
    		var m7 map[G2]int64
    		var ch7 chan byte
    		var fnc1 func(bool, func(chan G2, struct {
    			h0 G2
    		}, int64) **rune, int) map[complex128]int32 = func(p0 bool, p1 func(chan G2, struct {
    			h0 G2
    		}, int64) **rune, p2 int) map[complex128]int32 {
    			pf2 = pf2
    			as7 = as7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history.go

    	return cr, nil
    }
    
    // HashControllerRevision hashes the contents of revision's Data using FNV hashing. If probe is not nil, the byte value
    // of probe is added written to the hash as well. The returned hash will be a safe encoded string to avoid bad words.
    func HashControllerRevision(revision *apps.ControllerRevision, probe *int32) string {
    	hf := fnv.New32()
    	if len(revision.Data.Raw) > 0 {
    		hf.Write(revision.Data.Raw)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          %out_ch = tfrt_fallback_async.createop(%in_ch) key(0) device("/CPU:0")
            "some.op"() {attr1 = value, attr2 = value2} {f_attr1 = "fn1", f_attr2 = "fn2"} num_args(1)
      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        I64Attr:$num_args,
        StrAttr:$device,
        ArrayAttr:$op_attrs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. test/stress/parsego.go

    	"go",
    	"go/ast",
    	"go/build",
    	"go/doc",
    	"go/format",
    	"go/parser",
    	"go/printer",
    	"go/scanner",
    	"go/token",
    	"hash",
    	"hash/adler32",
    	"hash/crc32",
    	"hash/crc64",
    	"hash/fnv",
    	"html",
    	"html/template",
    	"image",
    	"image/color",
    	"image/draw",
    	"image/gif",
    	"image/jpeg",
    	"image/png",
    	"index",
    	"index/suffixarray",
    	"io",
    	"io/ioutil",
    	"log",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package container
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"hash/fnv"
    	"strings"
    
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. operator/pkg/tpath/tree_test.go

        name: n2
    `,
    		},
    		{
    			desc: "ModifyListEntryMapValue",
    			path: `a.b.[name:n2]`,
    			value: `name: n2
    list: 
      - nk1: nv1
      - nk2: nv2`,
    			wantFound: true,
    			want: `
    a:
      b:
      - name: n1
        value: v1
      - name: n2
        list:
        - nk1: nv1
        - nk2: nv2
    `,
    		},
    		{
    			desc:      "ModifyNthListEntry",
    			path:      `a.b.[1].list.[:v2]`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  8. src/internal/reflectlite/all_test.go

    	y float32
    }
    
    type NotBasic Basic
    
    type DeepEqualTest struct {
    	a, b any
    	eq   bool
    }
    
    // Simple functions for DeepEqual tests.
    var (
    	fn1 func()             // nil.
    	fn2 func()             // nil.
    	fn3 = func() { fn1() } // Not nil.
    )
    
    type self struct{}
    
    type Loop *Loop
    type Loopy any
    
    var loop1, loop2 Loop
    var loopy1, loopy2 Loopy
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. api/go1.9.txt

    pkg encoding/json, func Valid([]uint8) bool
    pkg go/ast, type TypeSpec struct, Assign token.Pos
    pkg go/types, func SizesFor(string, string) Sizes
    pkg go/types, method (*TypeName) IsAlias() bool
    pkg hash/fnv, func New128() hash.Hash
    pkg hash/fnv, func New128a() hash.Hash
    pkg html/template, const ErrPredefinedEscaper = 11
    pkg html/template, const ErrPredefinedEscaper ErrorCode
    pkg image/png, type Encoder struct, BufferPool EncoderBufferPool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          tfrt_fallback_sync.createop() key(0) device("/CPU:0")
            "some.op"() {attr1 = value, attr2 = value2} {f_attr1 = "fn1", f_attr2 = "fn2"} num_args(1)
      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let results = (outs);
    
      let assemblyFormat = "attr-dict";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top