Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,318 for conf4 (0.04 sec)

  1. tests/integration/security/sds_ingress/util/generate_certs.sh

    openssl x509 -req -days 3650 -CA "${WD}/rootA.crt" -CAkey "${WD}/rootA.key" -set_serial 1 -in "${WD}/clientA1.csr" -out "${WD}/clientA1.crt" -extensions v3_req -extfile "${WD}/client.conf"
    
    openssl ca -config "${WD}/crlA.conf" -revoke "${WD}/clientA1.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, 'c1')
                        }
                        capabilities {
                            requireCapability('org.test:cap1')
                        }
                    }
                    conf('org:test:1.0') {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix_test.go

    		want := *tt.want
    		if len(want.search) == 0 {
    			want.search = dnsDefaultSearch()
    		}
    		conf := dnsReadConfig(tt.name)
    		if conf.err != nil {
    			t.Fatal(conf.err)
    		}
    		conf.mtime = time.Time{}
    		if !reflect.DeepEqual(conf, &want) {
    			t.Errorf("%s:\ngot: %+v\nwant: %+v", tt.name, conf, want)
    		}
    	}
    }
    
    func TestDNSReadMissingFile(t *testing.T) {
    	origGetHostname := getHostname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInjectionIntegrationTest.groovy

                println 'Resource action executed'
            }
        }
    }
    
    dependencies {
        components {
            all(AssertingRule)
        }
        conf 'org:my-lib:1.0'
    }
    
    task resolve {
        def files = configurations.conf
        doLast {
            files.forEach { }
        }
    }
    """
            when:
            succeeds 'resolve'
    
            then:
            outputContains('AssertingRule executed')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. cni/pkg/install/cniconfig_test.go

    		},
    		{
    			name:             "standalone CNI plugin unspecified CNI config file",
    			expectedConfName: "YYY-istio-cni.conf",
    			goldenConfName:   "istio-cni.conf",
    		},
    		{
    			name:              "standalone CNI plugin specified CNI config file",
    			specifiedConfName: "specific-name.conf",
    			expectedConfName:  "specific-name.conf",
    			goldenConfName:    "istio-cni.conf",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. src/net/dnsclient_unix.go

    // The name variable only exists for testing. It is otherwise always
    // "/etc/resolv.conf".
    func (conf *resolverConfig) tryUpdate(name string) {
    	conf.initOnce.Do(conf.init)
    
    	if conf.dnsConfig.Load().noReload {
    		return
    	}
    
    	// Ensure only one update at a time checks resolv.conf.
    	if !conf.tryAcquireSema() {
    		return
    	}
    	defer conf.releaseSema()
    
    	now := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

                    configurations { conf }
                    dependencies {
                        ${platformDependency(platformType, 'org:platform:1.+')}
                        conf('org:bar')
                    }
                }
                dependencies {
                    conf(project(path: ':recklessLibrary', configuration: 'conf'))
                    conf(project(path: ':secondLibrary', configuration: 'conf'))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. pkg/filewatcher/filewatcher_test.go

    // newSymlinkedWatchFile simulates the behavior of k8s configmap/secret.
    // Path structure looks like:
    //
    //	<watchDir>/test.conf
    //	             ^
    //	             |
    //
    // <watchDir>/data/test.conf
    //
    //	^
    //	|
    //
    // <watchDir>/data1/test.conf
    func newSymlinkedWatchFile(t *testing.T) (string, string) {
    	g := NewGomegaWithT(t)
    
    	watchDir := t.TempDir()
    
    	dataDir1 := path.Join(watchDir, "data1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

                repositories { maven { url "${mavenRepo.uri}" } }
    
                configurations {
                    conf
                }
    
                task resolve {
                    dependsOn configurations.conf
                    doLast {
                        def expectedResult = result.split(",")
                        assert configurations.conf.files.collect { it.name } == expectedResult
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/export_test.go

    	"arm64": obj.Linknew(&arm64.Linkarm64),
    }
    
    func testConfig(tb testing.TB) *Conf      { return testConfigArch(tb, "amd64") }
    func testConfigS390X(tb testing.TB) *Conf { return testConfigArch(tb, "s390x") }
    func testConfigARM64(tb testing.TB) *Conf { return testConfigArch(tb, "arm64") }
    
    func testConfigArch(tb testing.TB, arch string) *Conf {
    	ctxt, ok := testCtxts[arch]
    	if !ok {
    		tb.Fatalf("unknown arch %s", arch)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top