Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 372 for Tdname (0.13 sec)

  1. .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)
  2. manifests/addons/dashboards/istio-mesh-dashboard.json

              {
                "matcher": {
                  "id": "byName",
                  "options": "Time"
                },
                "properties": [
                  {
                    "id": "custom.hidden",
                    "value": true
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Value #A"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. src/crypto/x509/cert_pool.go

    func (s *CertPool) Clone() *CertPool {
    	p := &CertPool{
    		byName:     make(map[string][]int, len(s.byName)),
    		lazyCerts:  make([]lazyCert, len(s.lazyCerts)),
    		haveSum:    make(map[sum224]bool, len(s.haveSum)),
    		systemPool: s.systemPool,
    	}
    	for k, v := range s.byName {
    		indexes := make([]int, len(v))
    		copy(indexes, v)
    		p.byName[k] = indexes
    	}
    	for k := range s.haveSum {
    		p.haveSum[k] = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. releasenotes/notes/inbound-cluster-rename.yaml

    John Howard <******@****.***> 1606926239 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 16:23:59 UTC 2020
    - 232 bytes
    - Viewed (0)
  5. src/sort/example_wrapper_test.go

    type Organ struct {
    	Name   string
    	Weight Grams
    }
    
    type Organs []*Organ
    
    func (s Organs) Len() int      { return len(s) }
    func (s Organs) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
    
    // ByName implements sort.Interface by providing Less and using the Len and
    // Swap methods of the embedded Organs value.
    type ByName struct{ Organs }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.6K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        testClasses: List<String>,
    ) : BaseGradleBuildType(stage = stage, init = {
    
        id("${model.projectId}_${docsTestType.docsTestName}_${os.asName()}_$index")
        name = "${docsTestType.docsTestDesc} - ${testJava.version.name.toCapitalized()} ${os.asName()} ($index)"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyTestDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

            then:
            result.assertTaskSkipped(":a")
    
            when:
            executer.withArgument("-Dname=b")
            run("a")
    
            then:
            result.assertTaskNotSkipped(":a")
            file("out.txt").text == "b"
    
            when:
            executer.withArgument("-Dname=b")
            run("a")
    
            then:
            result.assertTaskSkipped(":a")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	ents       []HeaderField
    	evictCount uint64
    
    	// byName maps a HeaderField name to the unique id of the newest entry with
    	// the same name. See above for a definition of "unique id".
    	byName map[string]uint64
    
    	// byNameValue maps a HeaderField name/value pair to the unique id of the newest
    	// entry with the same name and value. See above for a definition of "unique id".
    	byNameValue map[pairNameValue]uint64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    			parameters:   testResourceClassParameters("", goodName, goodFilters),
    		},
    		"missing-namespace": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "namespace"), "")},
    			parameters:   testResourceClassParameters(goodName, "", goodFilters),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top