Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for cmconfig (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

      const QuantizationSpecs& previous_specs = config.specs();
      new_specs.mutable_specs()->Add(previous_specs.specs().begin(),
                                     previous_specs.specs().end());
    
      config.clear_weight_only_ptq_preset();
      config.mutable_specs()->Swap(&new_specs);
    }
    
    }  // namespace
    
    QuantizationConfig ExpandPresets(const QuantizationConfig& config) {
      QuantizationConfig new_config = config;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // (`absl::string_view`) so its lifetime is bound to the input `config`.
    inline std::optional<absl::string_view> GetReportFilePath(
        const QuantizationConfig& config ABSL_ATTRIBUTE_LIFETIME_BOUND) {
      return config.has_report_file_path()
                 ? std::make_optional<absl::string_view>(config.report_file_path())
                 : std::nullopt;
    }
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return nil, "", fmt.Errorf("error decoding encryption provider configuration file %q: %w", filepath, err)
    	}
    	config, ok := configObj.(*apiserver.EncryptionConfiguration)
    	if !ok {
    		return nil, "", fmt.Errorf("got unexpected config type: %v", gvk)
    	}
    
    	return config, contentHash, validation.ValidateEncryptionConfiguration(config, reload).ToAggregate()
    }
    
    func loadDataAndHash(filepath string) ([]byte, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    }
    
    // ConfigForResource is a Config specialized to a particular `schema.GroupResource`
    type ConfigForResource struct {
    	// Config is the resource-independent configuration
    	Config
    
    	// GroupResource is the relevant one
    	GroupResource schema.GroupResource
    }
    
    // ForResource specializes to the given resource
    func (config *Config) ForResource(resource schema.GroupResource) *ConfigForResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			ctx := context.TODO()
    			s := withRule(*tt.schema, tt.rule)
    			celValidator := NewValidator(&s, true, celconfig.PerCallLimit)
    			if celValidator == nil {
    				t.Fatal("expected non nil validator")
    			}
    			errs, _ := celValidator.Validate(ctx, field.NewPath("root"), &s, tt.obj, nil, celconfig.RuntimeCELCostBudget)
    			for _, err := range errs {
    				t.Errorf("unexpected error: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	"github.com/google/cel-go/common/types"
    
    	apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apimachinery/pkg/util/version"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	apiservercel "k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/cel/metrics"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/apiserver/pkg/cel/common"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/registry/generic"
    	apiserverstorage "k8s.io/apiserver/pkg/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    package driver
    
    import (
    	"fmt"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    )
    
    // config holds settings for a single named config.
    // The JSON tag name for a field is used both for JSON encoding and as
    // a named variable.
    type config struct {
    	// Filename for file-based output formats, stdout by default.
    	Output string `json:"-"`
    
    	// Display options.
    	CallTree            bool    `json:"call_tree,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. pkg/test/framework/config.go

    	"istio.io/istio/pkg/test/framework/resource/config"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    var _ config.Factory = &configFactory{}
    
    type configFactory struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. cni/pkg/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Config struct {
    	InstallConfig InstallConfig
    	RepairConfig  RepairConfig
    }
    
    // InstallConfig struct defines the Istio CNI installation options
    type InstallConfig struct {
    	// Location of the CNI config files in the host's filesystem
    	CNINetDir string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top