Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,143 for setupCa (0.23 sec)

  1. pkg/volume/configmap/configmap_test.go

    	group := int64(1001)
    	mounterArgs.FsGroup = &group
    	err = mounter.SetUp(mounterArgs)
    	if err != nil {
    		t.Errorf("Failed to setup volume: %v", err)
    	}
    	if _, err := os.Stat(volumePath); err != nil {
    		if os.IsNotExist(err) {
    			t.Errorf("SetUp() failed, volume path not created: %s", volumePath)
    		} else {
    			t.Errorf("SetUp() failed: %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  2. cmd/generic-handlers.go

    			h.ServeHTTP(w, r)
    			return
    		}
    
    		bucket, object := request2BucketObjectName(r)
    
    		// Requests in federated setups for STS type calls which are
    		// performed at '/' resource should be routed by the muxer,
    		// the assumption is simply such that requests without a bucket
    		// in a federated setup cannot be proxied, so serve them at
    		// current server.
    		if bucket == "" {
    			h.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

            """
    
            expect:
            executer.withBuildJvmOpts("-Dfoo.bar=baz").withTasks("verify").run()
        }
    
    
        def "forks new daemon when file encoding set to different value via commandline"() {
            setup:
            buildScript """
                task verify {
                    doFirst {
                        println "verified = " + java.nio.charset.Charset.defaultCharset().name()
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

    import org.gradle.util.GradleVersion
    
    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion('>=7.6')
    class SystemPropertyPropagationCrossVersionTest extends ToolingApiSpecification {
    
        OutputStream out
    
        def setup() {
            out = new ByteArrayOutputStream()
            System.setProperty('mySystemProperty', 'defined in the client JVM')
            buildFile << '''
                tasks.register('printSystemProperty') {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import spock.lang.Issue
    
    class CompositeBuildTaskExcludeIntegrationTest extends AbstractCompositeBuildTaskExecutionIntegrationTest {
    
        def setup() {
            createDirs("sub", "included", "included/sub")
            settingsFile << """
                rootProject.name = 'root'
                include('sub')
                includeBuild('included')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. architecture/security/istio-agent.md

    a certificate. This can be handled in various ways:
    * `GenerateSecret` may additionally write any signed certificates to disk, with `OUTPUT_CERTS` configured.
    * Users may have external CA setups that pre-configure certificates.
    * The CaClient can use JWT token for the initial setup, then switch to mTLS certificates.
    
    Note that `OUTPUT_CERTS` can be used to refresh certificates using previously provisioned certificates, by configuring
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoErrorsIntegrationTest.groovy

        String artifactVersion = "1.85"
        MavenGcsModule module
    
        @Override
        String getRepositoryPath() {
            return '/maven/release/'
        }
    
        def setup() {
            module = mavenGcsRepo.module("org.gradle", "test", artifactVersion)
            buildFile << """
    configurations { compile }
    
    dependencies{
        compile 'org.gradle:test:$artifactVersion'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        setup-addon-manifests "admission-controls" "limit-range" "gce"
      fi
      setup-addon-manifests "addons" "admission-resource-quota-critical-pods"
      if [[ "${NETWORK_POLICY_PROVIDER:-}" == "calico" ]]; then
        setup-addon-manifests "addons" "calico-policy-controller"
    
        setup-addon-custom-yaml "addons" "calico-policy-controller" "calico-node-daemonset.yaml" "${CUSTOM_CALICO_NODE_DAEMONSET_YAML:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

    import spock.lang.Issue
    
    class EclipseModelBuilderDependenciesTest extends AbstractProjectBuilderSpec {
        Project child1
        Project child2
        Project child3
        Project child4
        Project child5
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3SnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenS3Module module
    
        def setup() {
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in S3"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top