Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for Option (0.11 sec)

  1. platforms/core-runtime/launcher/build.gradle.kts

    dependencies {
        api(project(":base-services"))
        api(project(":build-events"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":build-state"))
        api(project(":cli"))
        api(project(":concurrent"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":daemon-protocol"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/test/framework/config.go

    }
    
    func (c *configPlan) Apply(opts ...apply.Option) error {
    	// Apply the options.
    	options := apply.Options{}
    	for _, o := range opts {
    		o.Set(&options)
    	}
    
    	// Apply for each namespace concurrently.
    	g, _ := errgroup.WithContext(context.TODO())
    	for ns, y := range c.yamlText {
    		ns, y := ns, y
    		g.Go(func() error {
    			return c.applyYAML(options.Cleanup, ns, y...)
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-java",
    					"build-cache-base",
    					"normalization-java",
    					"docs",
    					"build-option",
    					"toolchains-jvm",
    					"resources-http",
    					"execution",
    					"resources",
    					"internal-performance-testing",
    					"wrapper-shared"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    func NewPriorityQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option,
    ) *PriorityQueue {
    	options := defaultPriorityQueueOptions
    	if options.podLister == nil {
    		options.podLister = informerFactory.Core().V1().Pods().Lister()
    	}
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	comp := func(podInfo1, podInfo2 interface{}) bool {
    		pInfo1 := podInfo1.(*framework.QueuedPodInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. 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)
  6. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

        text(
            "profiler",
            defaultProfiler,
            display = ParameterDisplay.PROMPT,
            allowEmpty = false,
            description = "Command line option for the performance test task to enable profiling. For example `async-profiler`, `async-profiler-heap`, `async-profiler-all` or `jfr`. Use `none` for benchmarking only."
        )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. internal/grid/stream.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: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/build.gradle.kts

    // The integration tests in this project do not need to run in 'config cache' mode.
    tasks.configCacheIntegTest {
        enabled = false
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":build-option"))
        api(projects.concurrent)
        api(projects.configurationCacheBase)
        api(projects.configurationProblemsBase)
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        List<Path> getPaths();
    
        /**
         * Returns the file paths of all dependencies, dispatched according the tool options where to place them.
         * The {@link PathType} keys identify, for example, {@code --class-path} or {@code --module-path} options.
         * In the case of Java tools, the map may also contain {@code --patch-module} options, which are
         * {@linkplain org.apache.maven.api.JavaPathType#patchModule(String) handled in a special way}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/registry.go

    )
    
    // NewInTreeRegistry builds the registry with all the in-tree plugins.
    // A scheduler that runs out of tree plugins can register additional plugins
    // through the WithFrameworkOutOfTreeRegistry option.
    func NewInTreeRegistry() runtime.Registry {
    	fts := plfeature.Features{
    		EnableDynamicResourceAllocation:              feature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top