Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for myname (0.13 sec)

  1. cmd/kubeadm/app/phases/certs/certlist.go

    			ca, ok := m[cert.CAName]
    			if !ok {
    				return nil, errors.Errorf("certificate %q references unknown CA %q", cert.Name, cert.CAName)
    			}
    			caMap[ca] = append(caMap[ca], cert)
    		}
    	}
    
    	return caMap, nil
    }
    
    // Certificates is a list of Certificates that Kubeadm should create.
    type Certificates []*KubeadmCert
    
    // AsMap returns the list of certificates as a map, keyed by name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
        name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
        description = "Allows you to rerun a selected flaky test 10 times"
        id(id)
        val testJvmVendorParameter = "testJavaVendor"
        val testJvmVersionParameter = "testJavaVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. internal/event/name.go

    			res[i] = Name(i + 1)
    		}
    		return res
    	default:
    		return []Name{name}
    	}
    }
    
    // Mask returns the type as mask.
    // Compound "All" types are expanded.
    func (name Name) Mask() uint64 {
    	if name < objectSingleTypesEnd {
    		return 1 << (name - 1)
    	}
    	var mask uint64
    	for _, n := range name.Expand() {
    		mask |= 1 << (n - 1)
    	}
    	return mask
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override
        fun asName(): String =
            "${type.displayName} - ${os.asName()}${if (withoutDependencies) " without dependencies" else ""}"
    
        override
        fun channel() =
            "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
        private val name: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    abstract class AdHocPerformanceScenario(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
        name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}"
        id(id)
    
        applyPerformanceTestSettings(os = os, arch = arch, timeout = 420)
        artifactRules = individualPerformanceTestArtifactRules
    
        params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/net/rpc/server.go

    const logRegisterError = false
    
    func (server *Server) register(rcvr any, name string, useName bool) error {
    	s := new(service)
    	s.typ = reflect.TypeOf(rcvr)
    	s.rcvr = reflect.ValueOf(rcvr)
    	sname := name
    	if !useName {
    		sname = reflect.Indirect(s.rcvr).Type().Name()
    	}
    	if sname == "" {
    		s := "rpc.Register: no service name for type " + s.typ.String()
    		log.Print(s)
    		return errors.New(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                parallelizationMethod,
                subprojects.map { it.name }
            )
    
        override fun getName(testCoverage: TestCoverage) = truncateName("${testCoverage.asName()} (${subprojects.joinToString(",") { it.name }})")
    
        override fun getDescription(testCoverage: TestCoverage) = "${testCoverage.asName()} for ${subprojects.joinToString(", ") { it.name }}"
    
        fun toJsonBucket(): FunctionalTestBucket {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool `json:"externallyManaged"`
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    	CAName string `json:"caName,omitempty"`
    
    	// Missing represents if the certificate is missing.
    	Missing bool `json:"missing"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		exist: false,
    	}
    	tests := []struct {
    		name    string
    		cas     map[string]*CAExpirationHandler
    		caName  string
    		want    bool
    		wantErr bool
    	}{
    		{
    			name:    "caName does not exist in cas list",
    			cas:     map[string]*CAExpirationHandler{},
    			caName:  "foo",
    			want:    false,
    			wantErr: true,
    		},
    		{
    			name: "ca exists",
    			cas: map[string]*CAExpirationHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top