Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,184 for conf1 (0.09 sec)

  1. plugin/pkg/admission/imagepolicy/gencerts.sh

    openssl x509 -req -in server.csr -CA caCert.pem -CAkey caKey.pem -CAcreateserial -out serverCert.pem -days 100000 -extensions v3_req -extfile server.conf
    
    # Create a client certiticate
    openssl genrsa -out clientKey.pem 2048
    openssl req -new -key clientKey.pem -out client.csr -subj "/CN=webhook_imagepolicy_client" -config client.conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

                println conf.collect { it.name }
                println other.collect { it.name }
            }
        }
    }
    
    task res {
        def conf = configurations.conf
        doLast {
            // Should get the unmodified component metadata for 'projectA'
            println conf.collect { it.name }
            assert conf.collect { it.name } == ['projectA-1.0.jar']
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FileDependencyResolveIntegrationTest.groovy

                    compile project(path: ':sub', configuration: 'conf')
                    conf project(path: ':sub', configuration: 'conf')
                    conf jar.outputs.files
                }
            '''
            file("sub/build.gradle") << '''
                dependencies {
                    conf jar.outputs.files
                    conf project(path: ':', configuration: 'conf')
                }
            '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/MappingSourceDependencyMultiprojectIntegrationTest.groovy

                            }
                        }
                    }
                }
            """
    
            buildFile << """
                dependencies {
                    conf 'org.test:foo:latest.integration'
                    conf 'org.test:bar:latest.integration'
                }
            """
    
            expect:
            repo.expectListVersions()
            repo.expectCloneSomething()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    	if err != nil {
    		return nil, err
    	}
    	conf := &resolvConfTest{
    		dir:            dir,
    		path:           path.Join(dir, "resolv.conf"),
    		resolverConfig: &resolvConf,
    	}
    	conf.initOnce.Do(conf.init)
    	return conf, nil
    }
    
    func (conf *resolvConfTest) write(lines []string) error {
    	f, err := os.OpenFile(conf.path, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0600)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                'org:testA:2'()
                'org:testA:3'()
                'org:testB:1'()
                'org:testB:2'()
            }
            buildFile << """
                dependencies {
                    conf "org:testA:+"
                    conf "org:testB:+"
                }
            """
    
            when:
            repositoryInteractions {
                'org:testA:3' {
                    expectResolve()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                }
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:top:1.0'
                }
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
                    dependencySpec = { it.requested.module == 'middle' }
                    configuration = configurations.conf
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check_test.go

    	}
    
    	// set up typechecker
    	var conf Config
    	conf.Trace = manual && testing.Verbose()
    	conf.Importer = defaultImporter()
    	conf.Error = func(err error) {
    		if *haltOnError {
    			defer panic(err)
    		}
    		if listErrors {
    			t.Error(err)
    			return
    		}
    		errlist = append(errlist, err)
    	}
    
    	// apply custom configuration
    	for _, opt := range opts {
    		opt(&conf)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/sizes.go

    // stdSizes is used if Config.Sizes == nil.
    var stdSizes = SizesFor("gc", "amd64")
    
    func (conf *Config) alignof(T Type) int64 {
    	f := stdSizes.Alignof
    	if conf.Sizes != nil {
    		f = conf.Sizes.Alignof
    	}
    	if a := f(T); a >= 1 {
    		return a
    	}
    	panic("implementation of alignof returned an alignment < 1")
    }
    
    func (conf *Config) offsetsof(T *Struct) []int64 {
    	var offsets []int64
    	if T.NumFields() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    					return true, nil, apierrors.NewServerTimeout(
    						schema.GroupResource{}, "create", 0)
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "super-admin.conf: admin.conf cannot create CRB, create CRB with super-admin.conf, return client from admin.conf",
    			setupAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top