Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for labelFor (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassLoaderHierarchy.kt

    )
    
    
    private
    fun classLoaderHierarchyJsonFor(
        classLoaders: List<ClassLoaderNode>,
        scopes: List<ClassLoaderScope>,
        pathFormatter: PathStringFormatter
    ): String {
    
        fun labelFor(scope: ClassLoaderScope) =
            pathFormatter(if (scope is AbstractClassLoaderScope) scope.path else scope.toString())
    
        return toJson(
            mapOf(
                "classLoaders" to classLoaders.map {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. .github/workflows/labeler.yml

    name: "Issue Labeler"
    on:
      issues:
        types: [opened, edited, reopened]
      pull_request:
        types: [opened, edited, reopened]
    
    jobs:
      triage:
        runs-on: ubuntu-latest
        name: Label issues and pull requests
        steps:
          - name: check out
            uses: actions/checkout@v4
    
          - name: labeler
            uses: jinzhu/super-labeler-action@develop
            with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 423 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/go/parser/testdata/resolution/resolution.src

    	}
    }
    
    type c /* =@cdecl */ map[token.Pos]resolvedObj
    
    func (v /* =@vdecl */ c /* @cdecl */) Visit(node /* =@nodearg */ ast.Node) (w /* =@w */ ast.Visitor) {}
    
    const (
    	basic /* =@basic */ = iota
    	labelOk // =@labelOk
    )
    
    type T /* =@T */ int
    
    func _(count /* =@count */ T /* @T */) {
    	x /* =@x1 */ := c /* @cdecl */{}
    	switch x /* =@x2 */ := x /* @x1 */; x /* =@x3 */ := x /* @x2 */.(type) {
    	case c /* @cdecl */:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 21:19:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. cluster/gce/manifests/cloud-controller-manager.manifest

            "readOnly": true}
          ]
        },
        {
        "name": "cloud-pvl-admission",
        "image": "gcr.io/k8s-staging-cloud-pv-labeler/cloud-pv-admission-labeler:v0.3.0",
        "resources": {
          "requests": {
            "cpu": "10m"
          }
        },
        "command": [
          "/cloud-pv-admission-labeler",
          "--addr=localhost:9001",
          "--tls-cert-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.status.yaml.golden

    Frank Budinsky <******@****.***> 1699583427 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	labels := labelMap{"label": "value"}
    	labelStr := "\n# labels: " + labels.String()
    	selfLabel := labelMap{"self-label": "self-value"}
    	selfLabelStr := "\n# labels: " + selfLabel.String()
    	fingLabel := labelMap{"fing-label": "fing-value"}
    	fingLabelStr := "\n# labels: " + fingLabel.String()
    	orderedPrefix := []string{
    		"\n50 @ ",
    		"\n44 @", labelStr,
    		"\n40 @",
    		"\n36 @", labelStr,
    		"\n10 @",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. pkg/kube/krt/internal.go

    }
    
    // getLabels returns the labels for an object, if possible.
    // Warning: this will panic if the labels is not available.
    func getLabels(a any) map[string]string {
    	al, ok := a.(Labeler)
    	if ok {
    		return al.GetLabels()
    	}
    	pal, ok := any(&a).(Labeler)
    	if ok {
    		return pal.GetLabels()
    	}
    	ak, ok := a.(metav1.Object)
    	if ok {
    		return ak.GetLabels()
    	}
    	ac, ok := a.(config.Config)
    	if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pkg/kube/krt/core.go

    type LabelSelectorer interface {
    	GetLabelSelector() map[string]string
    }
    
    // Labeler is an optional interface that can be implemented by collection types.
    // If implemented, this will be used to determine an objects' Labels
    type Labeler interface {
    	GetLabels() map[string]string
    }
    
    // Namer is an optional interface that can be implemented by collection types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top