Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 408 for Option (0.08 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                    sb.append(option.getOpt());
                    sb.append("'>");
                    sb.append(option.getOpt());
                    sb.append("</a>");
                }
    
                if (nonNull(option.getLongOpt())) {
                    if (nonNull(option.getOpt())) {
                        sb.append(", ");
                    }
                    sb.append("--<a name='");
                    sb.append(option.getLongOpt());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKeyTest.kt

            )
        }
    
        @Test
        fun `cache key honours isolated projects option`() {
            assertThat(
                cacheKeyStringFromStartParameter {
                    isolatedProjects = Option.Value.value(true)
                },
                equalTo(cacheKeyStringFromStartParameter {
                    isolatedProjects = Option.Value.value(true)
                })
            )
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. buildscripts/checkdeps.sh

    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tests/integration/ambient/wasm_test.go

    			Path:   "/path",
    			Method: "GET",
    		},
    		Count: 1,
    		Retry: echo.Retry{
    			Options: append(defaultOptions, options...),
    		},
    		Check: checker,
    	}
    
    	_ = cltInstance.CallOrFail(ctx, httpOpts)
    }
    
    func sendTrafficToHostname(ctx framework.TestContext, checker echo.Checker, hostname string, options ...retry.Option) {
    	ctx.Helper()
    	if len(GetClientInstances()) == 0 {
    		ctx.Fatal("there is no client")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/composite-builds/build.gradle.kts

        testImplementation(project(":file-watching"))
        testImplementation(project(":build-option"))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":dependency-management")))
        testImplementation(testFixtures(project(":core")))
    
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":launcher"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

        }
    
        /**
         * Sets the single configuration (by name) to generate the report for.
         *
         * @param configurationName name of the configuration to generate the report for
         */
        @Option(option = "configuration", description = "The configuration to generate the report for.")
        public void setConfiguration(String configurationName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

    import org.gradle.api.tasks.TasksWithInputsAndOutputs
    import org.gradle.test.fixtures.file.TestFile
    
    class IsolatedProjectsIntegrationTest extends AbstractIsolatedProjectsIntegrationTest implements TasksWithInputsAndOutputs {
        def "option also enables configuration cache"() {
            settingsFile << """
                println "configuring settings"
            """
            buildFile """
                println "configuring root project"
                task thing { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. releasenotes/notes/securitycontext-condition.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 49549
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 197 bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "The Gradle build option parser."
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(libs.jsr305)
    
        api(project(":cli"))
        api(projects.stdlibJavaExtensions)
        api(project(":messaging"))
    
        implementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 320 bytes
    - Viewed (0)
Back to top