Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for Option (0.11 sec)

  1. pkg/scheduler/scheduler.go

    	dynInformerFactory dynamicinformer.DynamicSharedInformerFactory,
    	recorderFactory profile.RecorderFactory,
    	opts ...Option) (*Scheduler, error) {
    
    	logger := klog.FromContext(ctx)
    	stopEverything := ctx.Done()
    
    	options := defaultSchedulerOptions
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	if options.applyDefaultProfile {
    		var versionedCfg configv1.KubeSchedulerConfiguration
    		scheme.Scheme.Default(&versionedCfg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

        - linters:
            - staticcheck
          text: "SA1019: grpc.WithReturnConnectionError"
      # Independently from option `exclude` we use default exclude patterns,
      # it can be disabled by this option. To list all
      # excluded by default patterns execute `golangci-lint run --help`.
      # Default value for this option is true.
      exclude-use-default: true
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
         *           place the test directory in a {@code --patch-module} option.</li>
         *       <li>Otherwise, place the test directory on the module-path. However, this case
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            when:
            configurationCacheRun("greet", "-${option}greeting=hi")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle.kts': $reportedInput")
            }
    
            when:
            configurationCacheRun("greet", "-${option}greeting=hi")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. subprojects/core/build.gradle.kts

        api(project(":build-cache-base"))
        api(project(":build-cache-local"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
        api(project(":core-api"))
        api(project(":declarative-dsl-api"))
        api(project(":enterprise-logging"))
        api(project(":enterprise-operations"))
        api(project(":execution"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    	filtersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    type Option struct {
    	Revision     string
    	DomainSuffix string
    	Identifier   string
    	FiltersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    var _ model.ConfigStoreController = &Client{}
    
    func New(client kube.Client, opts Option) *Client {
    	schemas := collections.Pilot
    	if features.EnableGatewayAPI {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # Configure whether Operator manages webhook configurations. The current behavior
        # of Istiod is to manage its own webhook configurations.
        # When this option is set as true, Istio Operator, instead of webhooks, manages the
        # webhook configurations. When this option is set as false, webhooks manage their
        # own webhook configurations.
        operatorManageWebhooks: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # Configure whether Operator manages webhook configurations. The current behavior
        # of Istiod is to manage its own webhook configurations.
        # When this option is set as true, Istio Operator, instead of webhooks, manages the
        # webhook configurations. When this option is set as false, webhooks manage their
        # own webhook configurations.
        operatorManageWebhooks: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/log/options.go

    func (o *Options) WithStackdriverLoggingFormat() *Options {
    	o.useStackdriverFormat = true
    	return o
    }
    
    // WithTeeToUDS configures a parallel logging pipeline that writes logs to a server over UDS.
    // addr is the socket that the server listens on, and path is the HTTP path that process the log message.
    func (o *Options) WithTeeToUDS(addr, path string) *Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top