Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,704 for confv1 (0.48 sec)

  1. 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)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            when:
            def conf1 = dependencyScope("conf1")
            def conf2 = dependencyScope("conf2")
            def conf3 = dependencyScope("conf3", [conf1, conf2])
            resolvable("child1", [conf3])
            resolvable("child2", [conf1])
            resolvable("other")
    
            conf1.getDependencies().add(dependency1)
            conf2.getDependencies().add(dependency2)
            conf3.getDependencies().add(dependency3)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/config.go

    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func LoadConfiguration(config io.Reader) (*resourcequotaapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &resourcequotav1.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &resourcequotaapi.Configuration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/credentialprovider/config.go

    )
    
    // DockerConfigJSON represents ~/.docker/config.json file info
    // see https://github.com/docker/docker/pull/12009
    type DockerConfigJSON struct {
    	Auths DockerConfig `json:"auths"`
    	// +optional
    	HTTPHeaders map[string]string `json:"HttpHeaders,omitempty"`
    }
    
    // DockerConfig represents the config file used by the docker CLI.
    // This config that represents the credentials that should be used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. 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)
  6. istioctl/pkg/config/config.go

    }
    
    // Cmd represents the config subcommand command
    func Cmd() *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "config SUBCOMMAND",
    		Short: "Configure istioctl defaults",
    		Args:  cobra.NoArgs,
    		Example: `  # list configuration parameters
      istioctl experimental config list`,
    	}
    	configCmd.AddCommand(listCommand())
    	return configCmd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. cmd/config.go

    	return srvCfg.Merge(), nil
    }
    
    // ConfigSys - config system.
    type ConfigSys struct{}
    
    // Init - initializes config system from config.json.
    func (sys *ConfigSys) Init(objAPI ObjectLayer) error {
    	if objAPI == nil {
    		return errInvalidArgument
    	}
    
    	return initConfig(objAPI)
    }
    
    // NewConfigSys - creates new config system object.
    func NewConfigSys() *ConfigSys {
    	return &ConfigSys{}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  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. pkg/scheduler/apis/config/testing/config.go

    package testing
    
    import (
    	"testing"
    
    	"k8s.io/component-base/config/v1alpha1"
    	v1 "k8s.io/kube-scheduler/config/v1"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/scheme"
    )
    
    // V1ToInternalWithDefaults creates a v1 default configuration.
    func V1ToInternalWithDefaults(t *testing.T, versionedCfg v1.KubeSchedulerConfiguration) *config.KubeSchedulerConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top