Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for STRATEGY (0.17 sec)

  1. .github/workflows/tests.yml

    on:
      push:
        branches-ignore:
          - 'gh-pages'
      pull_request:
        branches-ignore:
          - 'gh-pages'
    
    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

            return new HealthExpirationStrategy(stats, strategy);
        }
    
        @Provides
        protected DaemonHealthStats createDaemonHealthStats(DaemonRunningStats runningStats, GarbageCollectorMonitoringStrategy strategy, ExecutorFactory executorFactory) {
            return new DaemonHealthStats(runningStats, strategy, executorFactory);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    import org.gradle.api.internal.artifacts.configurations.ConfigurationInternal;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy.VersionComparator;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy.VersionParser;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy.VersionSelectorScheme;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.reporting.Reporting;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		DefaultQualifiedResource:  example.Resource("pods"),
    		SingularQualifiedResource: example.Resource("pod"),
    		CreateStrategy:            strategy,
    		UpdateStrategy:            strategy,
    		DeleteStrategy:            strategy,
    		KeyRootFunc: func(ctx context.Context) string {
    			return podPrefix
    		},
    		KeyFunc: func(ctx context.Context, id string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit.go

    		return nil, err
    	}
    
    	if args.ScoringStrategy == nil {
    		return nil, fmt.Errorf("scoring strategy not specified")
    	}
    
    	strategy := args.ScoringStrategy.Type
    	scorePlugin, exists := nodeResourceStrategyTypeMap[strategy]
    	if !exists {
    		return nil, fmt.Errorf("scoring strategy %s is not supported", strategy)
    	}
    
    	return &Fit{
    		ignoredResources:                sets.New(args.IgnoredResources...),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /** The Plexus component type */
        public static final String MAVEN_PLUGIN = "maven-plugin";
    
        /** "once-per-session" execution strategy */
        public static final String SINGLE_PASS_EXEC_STRATEGY = "once-per-session";
    
        /** "always" execution strategy */
        public static final String MULTI_PASS_EXEC_STRATEGY = "always";
    
        private static final String DEFAULT_INSTANTIATION_STRATEGY = "per-lookup";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. samples/addons/kiali.yaml

        - annotation: kiali.io/api-spec
          icon_annotation: kiali.io/api-type
          title: API Documentation
        auth:
          openid: {}
          openshift:
            client_id_prefix: kiali
          strategy: anonymous
        clustering:
          autodetect_secrets:
            enabled: true
            label: kiali.io/multiCluster=true
          clusters: []
        deployment:
          accessible_namespaces:
          - '**'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            }
    
            then:
            hasNoSystemProperty('java.io.tmpdir', customTmpDir)
        }
    
        private void runTask(@DelegatesTo(value = BuildLauncher, strategy = Closure.DELEGATE_ONLY) Closure<?> launcherSpec = {}) {
            withConnection {
                def launcher = newBuild().forTasks('printSystemProperty')
                launcherSpec.delegate = launcher
                launcherSpec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        def singleProjectBuild(String projectName, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl = {}) {
            buildTestFixture.singleProjectBuild(projectName, cl)
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl = {}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. schema/naming.go

    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    // TableName convert string to table name
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top