Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for customFile (0.25 sec)

  1. samples/security/spire/istio-spire-config.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      profile: default
      meshConfig:
        trustDomain: example.org
      values:
        global:
        # This is used to customize the sidecar template
        sidecarInjectorWebhook:
          templates:
            spire: |
              spec:
                containers:
                - name: istio-proxy
                  volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheRequestCustomizer.java

     * limitations under the License.
     */
    
    package org.gradle.caching.http.internal;
    
    import org.apache.http.HttpRequest;
    
    @FunctionalInterface
    public interface HttpBuildCacheRequestCustomizer {
        void customize(HttpRequest request);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 812 bytes
    - Viewed (0)
  3. docker/Dockerfile.distroless

    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    COPY --from=ubuntu_source /home/etc/passwd /etc/passwd
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  4. src/go/doc/doc.go

    // customize it before use.
    func (p *Package) Parser() *comment.Parser {
    	return &comment.Parser{
    		LookupPackage: p.lookupPackage,
    		LookupSym:     p.lookupSym,
    	}
    }
    
    // Printer returns a doc comment printer configured
    // for printing doc comments from package p.
    // Each call returns a new printer, so that the caller may
    // customize it before use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectHierarchyCustomizationIntegrationTest.groovy

    class ProjectHierarchyCustomizationIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://github.com/gradle/gradle/issues/18726")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can customize name of child project before customizing the name of parent project"() {
            createDirs("modules", "modules/projectA", "modules/projectA/projectB")
            settingsFile << """
                include("modules:projectA:projectB")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m8/ToolingApiEclipseModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        def "can customize model late in the configuration phase"() {
            projectDir.file('build.gradle').text = """
    apply plugin: 'java'
    
    gradle.projectsEvaluated {
        ${mavenCentralRepository()}
    }
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

            succeeds 'check'
    
            then:
            executed(":codenarcMain")
            executed(":codenarcTest")
            executed(":codenarcOther")
            notExecuted(":codenarcCustom")
        }
    
        def "can customize per-source-set tasks via extension"() {
            given:
            buildFile << '''
                sourceSets {
                    other {
                        groovy
                    }
                }
                codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            module.parsedPom.scopes.runtime.assertDependsOn("commons-collections:commons-collections:3.2.2")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("maven-publish/customize-identity")
        def "customize publication identity with #dsl dsl"() {
            given:
            def sampleDir = sampleProject.dir.file(dsl)
            inDirectory(sampleDir)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<getting_started_eng.adoc#introduction,Running Gradle Builds>> :: Learn Gradle basics and how to use Gradle to build your project.
    <<build_lifecycle.adoc#build_lifecycle,Authoring Gradle Builds>> :: Develop tasks and plugins to customize your build.
    <<building_java_projects.adoc#building_java_projects,Authoring JVM Builds>> :: Use Gradle with your Java project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. internal/config/scanner/help.go

    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// Help provides help for config values
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         Speed,
    			Description: `customize scanner speed (default|slowest|slow|fast|fastest)` + defaultHelpPostfix(Speed),
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         ExcessVersions,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:41:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top