Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for typehash (0.14 sec)

  1. .github/labels.json

        },
        "without_playground": {
          "name": "type:missing reproduction steps",
          "colour": "#CF2E1F",
          "description": "missing reproduction steps"
        },
        "has_pr": {
          "name": "type:has pull request",
          "colour": "#43952A",
          "description": "has pull request"
        },
        "not_tested": {
          "name": "type:not tested",
          "colour": "#CF2E1F",
          "description": "not tested"
        },
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 19 03:49:03 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        override fun visitSource(file: String?, debug: String?) = Unit
        override fun visitOuterClass(owner: String?, name: String?, desc: String?) = Unit
        override fun visitTypeAnnotation(typeRef: Int, typePath: TypePath?, desc: String?, visible: Boolean): AnnotationVisitor? = null
        override fun visitAttribute(attr: Attribute?) = Unit
        override fun visitInnerClass(name: String?, outerName: String?, innerName: String?, access: Int) = Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

          - get
      - apiGroups: [""]
        resources:
          - endpoints
          - services
        verbs:
          # Used to discover service IPs for advertisement.
          - watch
          - list
          # Used to discover Typhas.
          - get
      - apiGroups: [""]
        resources:
          - nodes/status
        verbs:
          # Needed for clearing NodeNetworkUnavailable flag.
          - patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	return f(indexes)
    }
    
    // TreeHash computes the hash for the root of the tree with n records,
    // using the HashReader to obtain previously stored hashes
    // (those returned by StoredHashes during the writes of those n records).
    // TreeHash makes a single call to ReadHash requesting at most 1 + logâ‚‚ n hashes.
    // The tree of size zero is defined to have an all-zero Hash.
    func TreeHash(n int64, r HashReader) (Hash, error) {
    	if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

    }
    
    static mlir::Attribute BuildI64ArrayAttr(std::vector<int32_t> value,
                                             mlir::Builder builder) {
      std::vector<int64_t> typecast(value.begin(), value.end());
      return builder.getI64ArrayAttr(typecast);
    }
    
    static mlir::Attribute BuildVhloBooleanV1Attr(bool value,
                                                  mlir::Builder builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    		list = append(list, h[id])
    	}
    	return list, nil
    }
    
    func (s *TestServer) Signed(ctx context.Context) ([]byte, error) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    	size := int64(len(s.records))
    	h, err := tlog.TreeHash(size, s.hashes)
    	if err != nil {
    		return nil, err
    	}
    	text := tlog.FormatTree(tlog.Tree{N: size, Hash: h})
    	signer, err := note.NewSigner(s.signer)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/objfile.go

    	w.tmpHash64 = contentHash64(s)
    	w.Bytes(w.tmpHash64[:])
    }
    
    func (w *writer) Hash(s *LSym) {
    	if !s.ContentAddressable() {
    		panic("Hash of non-content-addressable symbol")
    	}
    	w.tmpHash = w.contentHash(s)
    	w.Bytes(w.tmpHash[:])
    }
    
    // contentHashSection returns a mnemonic for s's section.
    // The goal is to prevent content-addressability from moving symbols between sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/inl_test.go

    			"pcvalueCacheKey",
    			"rand32",
    			"readUnaligned32",
    			"readUnaligned64",
    			"releasem",
    			"roundupsize",
    			"stackmapdata",
    			"stringStructOf",
    			"subtract1",
    			"subtractb",
    			"tophash",
    			"(*bmap).keys",
    			"(*bmap).overflow",
    			"(*waitq).enqueue",
    			"funcInfo.entry",
    
    			// GC-related ones
    			"cgoInRange",
    			"gclinkptr.ptr",
    			"guintptr.ptr",
    			"heapBitsSlice",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    // message and calls log.Fatal.
    func (c *Client) checkTrees(older tlog.Tree, olderNote []byte, newer tlog.Tree, newerNote []byte) error {
    	thr := tlog.TileHashReader(newer, &c.tileReader)
    	h, err := tlog.TreeHash(older.N, thr)
    	if err != nil {
    		if older.N == newer.N {
    			return fmt.Errorf("checking tree#%d: %v", older.N, err)
    		}
    		return fmt.Errorf("checking tree#%d against tree#%d: %v", older.N, newer.N, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    			for i := 0; i < abi.MapBucketCount; i++ {
    				if b.tophash[i] != emptyRest {
    					n++
    				}
    			}
    		}
    		k := 0
    		for b := b0; b != nil; b = b.overflow(t) {
    			for i := 0; i < abi.MapBucketCount; i++ {
    				if k < n && b.tophash[i] == emptyRest {
    					panic("early emptyRest")
    				}
    				if k >= n && b.tophash[i] != emptyRest {
    					panic("late non-emptyRest")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top