Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for leaf3 (0.11 sec)

  1. cmd/sts-handlers.go

    	peerCertificates := make([]*x509.Certificate, 0, len(r.TLS.PeerCertificates))
    	for _, cert := range r.TLS.PeerCertificates {
    		if cert.IsCA {
    			continue
    		}
    		peerCertificates = append(peerCertificates, cert)
    	}
    	r.TLS.PeerCertificates = peerCertificates
    
    	// Now, we have to check that the client has provided exactly one leaf
    	// certificate that we can map to a policy.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    		return cache, err
    	}
    
    	cache.Info.updates = updates
    
    	dataUsageInfo, err := scanDataFolder(ctx, disks, s.drivePath, cache, func(item scannerItem) (sizeSummary, error) {
    		// Look for `xl.meta/xl.json' at the leaf.
    		if !strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFile) &&
    			!strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFileV1) {
    			// if no xl.meta/xl.json found, skip the file.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      Type operand_type = op->getOperand(0).getType();
      Type result_type = result.getType();
      auto new_type = GetCastCompatibleType(operand_type, result_type);
      if (!new_type) {
        // Combine shape information when leaf element types are not the same, not
        // including shape info in subtypes.
        auto ranked_operand_type = mlir::dyn_cast<RankedTensorType>(operand_type);
        if (!ranked_operand_type) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		for _, p := range inlMarkList {
    			if p.As != obj.ANOP {
    				s.pp.CurFunc.LSym.Func().AddInlMark(p, inlMarks[p])
    			}
    		}
    
    		if e.stksize == 0 && !hasCall {
    			// Frameless leaf function. It doesn't need any preamble,
    			// so make sure its first instruction isn't from an inlined callee.
    			// If it is, add a nop at the start of the function with a position
    			// equal to the start of the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. RELEASE.md

        *   Add support for bitcasting to/from uint32 and uint64.
        *   Added a subclass of Estimator that can be created from a SavedModel
            (SavedModelEstimator).
        *   Adds leaf index modes as an argument.
        *   Allow a different output shape from the input in
            tf.contrib.image.transform.
        *   Change the state_size order of the StackedRNNCell to be natural order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top