Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,088 for label23 (0.11 sec)

  1. pkg/registry/core/namespace/strategy.go

    func MatchNamespace(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate {
    	return apistorage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    	}
    }
    
    // NamespaceToSelectableFields returns a field set that represents the object
    func NamespaceToSelectableFields(namespace *api.Namespace) fields.Set {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  2. pkg/registry/resource/podschedulingcontext/strategy.go

    // Match returns a generic matcher for a given label and field selector.
    func Match(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
    	return storage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    	}
    }
    
    // GetAttrs returns labels and fields of a given object for filtering purposes.
    func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/model/proxy_test.go

    )
    
    func TestGetLocalityLabel(t *testing.T) {
    	cases := []struct {
    		name     string
    		label    string
    		expected string
    	}{
    		{
    			name:     "with label",
    			label:    "region/zone/subzone-1",
    			expected: "region/zone/subzone-1",
    		},
    		{
    			name:     "label with k8s label separator",
    			label:    "region" + k8sSeparator + "zone" + k8sSeparator + "subzone-2",
    			expected: "region/zone/subzone-2",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane.go

    	for _, t := range taints {
    		if t == taint {
    			return true
    		}
    	}
    
    	return false
    }
    
    func markControlPlaneNode(n *v1.Node, taints []v1.Taint) {
    	for _, label := range labelsToAdd {
    		n.ObjectMeta.Labels[label] = ""
    	}
    
    	for _, nt := range n.Spec.Taints {
    		if !taintExists(nt, taints) {
    			taints = append(taints, nt)
    		}
    	}
    
    	n.Spec.Taints = taints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 13 15:45:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.webauth_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/strategy.go

    // watch events from etcd to clients of the apiserver only interested in specific
    // labels/fields.
    func MatchJob(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
    	return storage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. .github/workflows/slack-notifier.yml

    on:
      issues:
        types:
          - labeled
    
    permissions: {}
    
    jobs:
      send-slack-notification:
        if: ${{ github.event.label.name == 'in:ide' || github.event.label.name == 'in:eclipse-plugin' || github.event.label.name == 'in:idea-plugin' || github.event.label.name == 'in:tooling-api' }}
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about issues with specific labels
            id: slack
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    				},
    			},
    			// Print "second-label" as column name, with label value.
    			options: PrintOptions{ColumnLabels: []string{"second-label"}},
    			expected: `NAME    READY   STATUS     RETRIES   AGE   SECOND-LABEL
    test1   1/1     podPhase   5         20h   label-value
    `,
    		},
    		// Test a table "ColumnLabels" option, appends labels as columns.
    		{
    			columns: []metav1.TableColumnDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    	if s.isSkipped(ctx) {
    		return s.doSkip(ctx)
    	}
    
    	// Before starting, check whether the current set of labels & label selectors will ever allow us to run tests.
    	// if not, simply exit now.
    	if ctx.Settings().Selector.Excludes(s.labels) {
    		s.Skip(fmt.Sprintf("Label mismatch: labels=%v, selector=%v",
    			s.labels,
    			ctx.Settings().Selector))
    		return s.doSkip(ctx)
    	}
    
    	start := time.Now()
    
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.userInfo=User Info
    labels.webApiJson=JSON Response
    labels.webConfigName=Web Config Name
    labels.allLanguages=All Languages
    labels.dictId=Dictionary ID
    labels.docId=Document ID
    labels.endTime=End Time
    labels.hq=hq
    labels.inputs=Source
    labels.jobLogging=Logging
    labels.jobName=Name
    labels.jobStatus=Status
    labels.labelTypeIds=Labels
    labels.lang=lang
    labels.outputs=Target
    labels.pos=POS
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top