Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,090 for label_1 (0.26 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    // unlabel returns the inner statement for the possibly labeled statement stmt,
    // stripping any (possibly nested) *ast.LabeledStmt wrapper.
    //
    // The second result reports whether stmt was an *ast.LabeledStmt.
    func unlabel(stmt ast.Stmt) (ast.Stmt, bool) {
    	labeled := false
    	for {
    		labelStmt, ok := stmt.(*ast.LabeledStmt)
    		if !ok {
    			return stmt, labeled
    		}
    		labeled = true
    		stmt = labelStmt.Stmt
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject_test.go

    				c.pod.Labels, c.ns.Labels)
    			assert.Equal(t, c.expectedMessages, checkResults)
    		})
    	}
    }
    
    var nsTestObject = func(namespace, injLabelValue, revLabelValue string) *corev1.Namespace {
    	labels := map[string]string{}
    	if injLabelValue != "" {
    		labels["istio-injection"] = injLabelValue
    	}
    	if revLabelValue != "" {
    		labels[label.IoIstioRev.Name] = revLabelValue
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. 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)
  4. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_edit.jsp

                                    </div>
                                    <div class="form-group row">
                                        <label for="suggestWord" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.elevate_word_suggest_word"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="suggestWord"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  5. releasenotes/notes/50395.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 50396
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 19:31:36 UTC 2024
    - 241 bytes
    - Viewed (0)
  6. pkg/kube/krt/join_test.go

    			Namespace: "namespace",
    			Labels:    map[string]string{"app": "foo"},
    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.4"},
    	})
    	pods := krt.NewInformer[*corev1.Pod](c)
    	stop := test.NewStop(t)
    	c.RunAndWait(stop)
    	SimplePods := SimplePodCollection(pods)
    	ExtraSimplePods := krt.NewStatic(&SimplePod{
    		Named:   Named{"namespace", "name-static"},
    		Labeled: Labeled{map[string]string{"app": "foo"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_edit.jsp

                                    </div>
                                    <div class="form-group row">
                                        <label for="token" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_kuromoji_token"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="token"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 8.6K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection_test.go

    }
    
    func (s Named) ResourceName() string {
    	return s.Namespace + "/" + s.Name
    }
    
    func NewLabeled(n map[string]string) Labeled {
    	return Labeled{n}
    }
    
    type Labeled struct {
    	Labels map[string]string
    }
    
    func (l Labeled) GetLabels() map[string]string {
    	return l.Labels
    }
    
    type SimpleService struct {
    	Named
    	Selector map[string]string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig.jsp

                                        <div class="form-group row">
                                            <label for="name" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.name"/></label>
                                            <div class="col-sm-10">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    	if s.Empty() {
    		return true, nil
    	}
    	labels, fields, err := s.GetAttrs(obj)
    	if err != nil {
    		return false, err
    	}
    	matched := s.Label.Matches(labels)
    	if matched && s.Field != nil {
    		matched = matched && s.Field.Matches(fields)
    	}
    	return matched, nil
    }
    
    // MatchesObjectAttributes returns true if the given labels and fields
    // match s.Label and s.Field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top