Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 185 for myname (0.14 sec)

  1. 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)
  2. pkg/config/resource/name.go

    func (n FullName) Validate() error {
    	if len(n.Name) == 0 {
    		return fmt.Errorf("invalid name '%s': name must not be empty", n.String())
    	}
    	return nil
    }
    
    // NewFullName creates a new FullName from the given Namespace and Name.
    func NewFullName(ns Namespace, n LocalName) FullName {
    	return FullName{
    		Namespace: ns,
    		Name:      n,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/carchive_test.go

    func checkArchive(t *testing.T, arname string) {
    	t.Helper()
    
    	switch GOOS {
    	case "aix", "darwin", "ios", "windows":
    		// We don't have any checks for non-ELF libraries yet.
    		if _, err := os.Stat(arname); err != nil {
    			t.Errorf("archive %s does not exist: %v", arname, err)
    		}
    	default:
    		checkELFArchive(t, arname)
    	}
    }
    
    // checkELFArchive checks an ELF archive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. .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)
  5. 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)
  6. 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)
  7. .teamcity/src/main/kotlin/common/Os.kt

     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
        val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    		t.Fatalf("Couldn't close tmpfile: %v", err)
    	}
    
    	tests := []struct {
    		name     string
    		filename string
    		want     bool
    	}{
    		{
    			name:     "file exist",
    			filename: tmpfile.Name(),
    			want:     true,
    		},
    		{
    			name:     "file does not exist",
    			filename: "foo",
    			want:     false,
    		},
    		{
    			name:     "file path is a dir",
    			filename: tmpdir,
    			want:     false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/projects/StageProject.kt

            val topLevelFunctionalTests = topLevelCoverage
                .map { FunctionalTest(model, it.asConfigurationId(model), it.asName(), it.asName(), it, stage = stage) }
            topLevelFunctionalTests.forEach(this::buildType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

    import model.Stage
    
    abstract class PerformanceTestProject(model: CIBuildModel, val spec: PerformanceTestProjectSpec, val performanceTests: List<PerformanceTest>) : Project({
        this.id(spec.asConfigurationId(model))
        this.name = spec.asName()
    }) {
        init {
            performanceTests.forEach(this::buildType)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top