Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,836 for additional (0.26 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Additional parameters passed to the compiler.
         * Each parameter must start with '-'.
         *
         * @return The list of additional parameters.
         */
        @Optional
        @Input
        public List<String> getAdditionalParameters() {
            return additionalParameters;
        }
    
        /**
         * Sets the additional parameters.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderAssertions.groovy

            producer.visitProducerTasks { assert false }
            producer.visitContentProducerTasks { assert false }
        }
    
        void assertHasProducer(ProviderInternal<?> provider, Task task, Task... additional) {
            def expected = [task] + (additional as List)
    
            def producer = provider.producer
            assert producer.known
            def tasks = []
            producer.visitProducerTasks { tasks.add(it) }
            assert tasks == expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/authz/kubelocal.go

        headersToDownstreamOnDeny: ["x-ext-authz-*"]
        includeRequestHeadersInCheck: ["x-ext-authz"]
        includeAdditionalHeadersInCheck:
          x-ext-authz-additional-header-new: additional-header-new-value
          x-ext-authz-additional-header-override: additional-header-override-value
    - name: "{{ .grpcName }}"
      envoyExtAuthzGrpc:
        service: "{{ .grpcHost }}"
        port: {{ .grpcPort }}`
    
    	localServiceEntryTemplate = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCompatibleToolChain.java

     */
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * A ToolChain that can handle additional platforms simply by configuring the NativeBinary.
     */
    @Incubating
    public interface GccCompatibleToolChain extends NativeToolChain {
        /**
         * The paths setting required for executing the tool chain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         *
         * If a configuration with this name already exists this method will <strong>overwrite</strong> its current usage to match what
         * would be set if the configuration needed to be created; it will emit an additional deprecation warning when doing this.
         */
        Configuration maybeCreateResolvableUnlocked(String name);
    
        /**
         * If a configuration with the given name already exists, return it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pkg/features/security.go

    var (
    	CompliancePolicy = env.Register("COMPLIANCE_POLICY", "",
    		`If set, applies policy-specific restrictions over all existing TLS
    settings, including in-mesh mTLS and external TLS. Valid values are:
    
    * '' or unset places no additional restrictions.
    * 'fips-140-2' which enforces a version of the TLS protocol and a subset
    of cipher suites overriding any user preferences or defaults for all runtime
    components, including Envoy, gRPC Go SDK, and gRPC C++ SDK.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/README.md

    # Monitor
    
    This package provides the ability to populate a `crd.Controller` dynamically via a function that provides
    additional config. The monitor will acquire snapshots of additional changes and populate the `crd.Controller`
    as needed.
    
    ## Creating a Monitor
    
    To create a monitor, you should provide the `crd.Controller`, a polling interval, and
    a function that returns `[]*model.Config`.
    
    ```golang
    monitor := file.NewMonitor(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

                }
            """.stripIndent()
    
            expect:
            succeeds('checkClasspath')
        }
    
        def "can compile against compile only dependencies for additional source sets"() {
            given:
            file('src/additional/java/Test.java') << """
                import org.apache.commons.logging.Log;
                import org.apache.commons.logging.LogFactory;
    
                public class Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/bestPractices/taskGroupDescription/tests/taskGroupDescription.sample.conf

    executable: gradle
    args: tasks
    expected-output-file: taskGroupDescription.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 108 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/mavenMigration/importBom/tests/dependencies.sample.conf

    executable: gradle
    args: dependencies
    expected-output-file: dependencies.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 107 bytes
    - Viewed (0)
Back to top