Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 172 for conf1 (0.07 sec)

  1. internal/kms/config.go

    				return nil, err
    			}
    			certificate.Watch(ctx, 15*time.Minute, syscall.SIGHUP)
    
    			conf.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
    				cert := certificate.Get()
    				return &cert, nil
    			}
    		}
    
    		var caDir string
    		if opts != nil {
    			caDir = opts.CADir
    		}
    		conf.RootCAs, err = certs.GetRootCAs(env.Get(EnvKESServerCA, caDir))
    		if err != nil {
    			return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

    # fluentd-gcp-configmap-old.yaml will be used for ingesting logs against old
    # resources like "gke_container" and "gce_instance".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
        # This configuration file for Fluentd is used
        # to watch changes to Docker log files that live in the
        # directory /var/lib/docker/containers/ and are symbolically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

    plugins {
        id 'distribution'
    }
    ${mavenCentralRepository()}
    
    configurations {
        conf.incoming.afterResolve {
            distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    
    task resolve {
        dependsOn configurations.conf
        doFirst {
            configurations.conf.files // Trigger `afterResolve`
            assert distributions*.name.contains('myDist')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            when:
            buildFile << """
    configurations {
        conf
    }
    
    task assertUnresolved {
        doLast {
            assert configurations.conf.state == Configuration.State.UNRESOLVED
        }
    }
    
    task war(type: War) {
        dependsOn assertUnresolved
        classpath = configurations.conf
        destinationDirectory = buildDir
    }
    """
    
            then:
            succeeds "war"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    			},
    			expectedOrganization: testCertOrganization,
    		},
    		{
    			name:     "Certificate renewal for a certificate embedded in a kubeconfig file",
    			certName: "admin.conf",
    			createCertFunc: func() *x509.Certificate {
    				return writeTestKubeconfig(t, dir, "admin.conf", testCACert, testCAKey, notBefore, notAfter)
    			},
    			expectedOrganization: testCertOrganization,
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file('a/build.gradle') << """
                configurations { conf }
                dependencies { conf project(path: ":b", configuration: "conf") }
                task resolveConf {
                    doLast {
                        //resolves at execution time, forcing 'b' to get configured
                        configurations.conf.files
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    	}
    
    	resolvConf := "/etc/resolv.conf"
    	// If running as root and the alternate resolv.conf file exists, use it instead.
    	// This is used when running in Docker or VMs, without iptables DNS interception.
    	if strings.HasSuffix(addr, ":53") {
    		if os.Getuid() == 0 {
    			h.respondBeforeSync = true
    			// TODO: we can also copy /etc/resolv.conf to /var/lib/istio/resolv.conf and
    			// replace it with 'nameserver 127.0.0.1'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            when:
            thing1.onMethodMissing = { name, args -> [].foo() }
            conf(thing1) { m1() }
    
            then:
            def e = thrown(MissingMethodException)
            e.method == "foo"
    
            when:
            thing1.onPropertyMissingGet = { new Object().bar }
            conf(thing1) { abc }
    
            then:
            e = thrown(MissingPropertyException)
            e.property == "bar"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. cni/test/install_cni.go

    	expectedPostCleanFile, tempCNIConfDir, tempCNIBinDir, tempK8sSvcAcctDir string,
    ) {
    	t.Logf("prior cni-conf='%v', expected result='%v'", preConfFile, resultFileName)
    
    	// disable monitoring & repair
    	viper.Set(constants.MonitoringPort, 0)
    	viper.Set(constants.RepairEnabled, false)
    
    	// Don't set the CNI conf file env var if preConfFile is not set
    	var envPreconf string
    	if preConfFile != "" {
    		envPreconf = preConfFile
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

                configurations {
                    conf
                }
    
                def dep = dependencies.create("org:dep:1.0")
    
                task resolve {
                    Closure depClosure = { d -> true }
                    Spec<Dependency> depSpec = (d) -> true
    
                    configurations.conf.files(dep)
                    configurations.conf.files(depSpec)
                    configurations.conf.files(depClosure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top