Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Consolidated (0.18 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/stablehlo_util.h

    // Can we find the given `dialect_name` in the `accepted_dialects`?
    bool IsAcceptedDialect(llvm::StringRef dialect_name,
                           const std::vector<std::string> &accepted_dialects);
    
    // The consolidated logic to verify if each final op is acceptable or not.
    // Also see `PrintOpStatsPass` and `CheckAcceptedOpsPass`.
    bool IsAcceptedOp(llvm::StringRef dialect_name, llvm::StringRef op_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 21:06:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    	Content string
    }
    
    // ManifestMap is a map of ComponentName to its manifest string.
    type ManifestMap map[ComponentName][]string
    
    // Consolidated returns a representation of mm where all manifests in the slice under a key are combined into a single
    // manifest.
    func (mm ManifestMap) Consolidated() map[string]string {
    	out := make(map[string]string)
    	for cname, ms := range mm {
    		allM := ""
    		for _, m := range ms {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

    # The only intended use case of this library is by `pywrap_tensorflow_to_stablehlo`. Not letting
    # `pywrap_tensorflow_to_stablehlo` directly depend on sub-libraries like `static_range_srq` and instead haiving
    # a consolidated impl library `pywrap_tensorflow_to_stablehlo_lib_impl` allows the maintainers to avoid
    # declaring multiple impl libraries to `libtensorflow_cc` and `lib_pywrap_tensorflow_internal`,
    # which is required to avoid ODR violations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

    # The only intended use case of this library is by `pywrap_quantization`. Not letting
    # `pywrap_quantization` directly depend on sub-libraries like `static_range_srq` and instead haiving
    # a consolidated impl library `pywrap_quantization_lib_impl` allows the maintainers to avoid
    # declaring multiple impl libraries to `libtensorflow_cc` and `lib_pywrap_tensorflow_internal`,
    # which is required to avoid ODR violations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/prune_test.go

    	iopTestGwData1 []byte
    	//go:embed testdata/iop-test-gw-2.yaml
    	iopTestGwData2 []byte
    )
    
    func applyResourcesIntoCluster(t *testing.T, h *HelmReconciler, manifestMap name.ManifestMap) {
    	for cn, ms := range manifestMap.Consolidated() {
    		objects, err := object.ParseK8sObjectsFromYAMLManifest(ms)
    		if err != nil {
    			t.Fatalf("failed parse k8s objects from yaml: %v", err)
    		}
    		for _, obj := range objects {
    			obju := obj.UnstructuredObject()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/model/model.go

    	extended extendedGenerator
    }
    
    type ruleList struct {
    	rules []*rule
    }
    
    // Model represents a single rule from an authorization policy. The conditions of the rule are consolidated into
    // permission or principal to align with the Envoy RBAC filter API.
    type Model struct {
    	permissions []ruleList
    	principals  []ruleList
    }
    
    // New returns a model representing a single authorization policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/go/types/methodset.go

    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    					// were consolidated before). The type at that depth shadows
    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				for i := 0; i < named.NumMethods(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/lookup.go

    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    					// were consolidated before). The type at that depth shadows
    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/go/types/lookup.go

    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    					// were consolidated before). The type at that depth shadows
    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    		fi.AddObjectPart(partI.Number, partI.ETag, partI.Size, partI.ActualSize, partI.ModTime, partI.Index, partI.Checksums)
    	}
    
    	// Calculate full object size.
    	var objectSize int64
    
    	// Calculate consolidated actual size.
    	var objectActualSize int64
    
    	// Order online disks in accordance with distribution order.
    	// Order parts metadata in accordance with distribution order.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top