Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for Option (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        const LayoutOptimizationPipelineOptions& options);
    
    struct StandardPipelineOptions
        : public PassPipelineOptions<StandardPipelineOptions> {
      Option<bool> enable_inliner{*this, "enable-inliner",
                                  llvm::cl::desc("Enable inliner."),
                                  llvm::cl::init(false)};
      Option<bool> form_clusters{*this, "form-clusters",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            this.projectDir = projectLayout.getProjectDirectory().getAsFile();
            this.getSuiteThreadPoolSize().convention(DEFAULT_SUITE_THREAD_POOL_SIZE_DEFAULT);
        }
    
        /**
         * Copies the options from the source options into the current one.
         * @since 8.0
         */
        public void copyFrom(TestNGOptions other) {
            this.outputDirectory = other.outputDirectory;
            replace(this.includeGroups, other.includeGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. cmd/utils.go

    	if err != nil {
    		return "", fmt.Errorf("auth url request err: %v", err)
    	}
    
    	// Modify u to choose the ldap option
    	u.Path += "/ldap"
    	// fmt.Println(u)
    
    	// Pick the LDAP login option. This would return a form page after
    	// following some redirects. `lastReq` would be the URL of the form
    	// page, where we need to POST (submit) the form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

    		HTTP: echo.HTTP{
    			Headers: headers.New().WithHost("bar").Build(),
    		},
    		Address: fmt.Sprintf("gateway-istio.%s.svc.cluster.local", apps.Namespace.Name()),
    		Check:   check.OK(),
    		Retry: echo.Retry{
    			Options: []retry.Option{retry.Timeout(time.Minute)},
    		},
    	})
    	apps.B[0].CallOrFail(t, echo.CallOptions{
    		Port:   echo.Port{ServicePort: 80},
    		Scheme: scheme.HTTP,
    		HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top