Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,090 for label_1 (0.16 sec)

  1. hack/testdata/deployment-label-change2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx2
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx2
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 377 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    		label := x.Label.Value
    		targ := r.labelLoop[label]
    		if nfor == targ {
    			// Label is in the innermost range-over-func loop; use it directly.
    			return x
    		}
    
    		// Set #next to the code meaning break/continue/goto label.
    		next = r.branchNext[branch{x.Tok, label}]
    
    		// Break out of nested loops up to targ.
    		i := len(r.forStack) - 1
    		for i >= 0 && r.forStack[i].nfor != targ {
    			i--
    		}
    		exitFrom = i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/network_test.go

    		expectGateways(t, 0)
    	})
    }
    
    func addLabeledServiceGateway(t *testing.T, c *FakeController, nw string) {
    	svc := &corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "istio-labeled-gw", Namespace: "arbitrary-ns", Labels: map[string]string{
    			label.TopologyNetwork.Name: nw,
    		}},
    		Spec: corev1.ServiceSpec{
    			Type:  corev1.ServiceTypeLoadBalancer,
    			Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    
    	// in case pod is not found when init EndpointBuilder.
    	networkID := network.ID(b.labels[label.TopologyNetwork.Name])
    	if networkID == "" {
    		networkID = b.endpointNetwork(endpointAddress)
    		b.labels[label.TopologyNetwork.Name] = string(networkID)
    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                                        <div class="form-group row">
                                                            <label for="name" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                                    key="labels.storage_folder_name"/></label>
                                                            <div class="form-inline col-sm-9">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc.jsp

                                        <div class="form-group row">
                                            <label for="urlExpr" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.boost_document_rule_url_expr"/></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
    - 7.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental_test.cc

      auto* counter2 = TFE_MonitoringNewCounter2("test/counter2", status,
                                                 "description", "label1", "label2");
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
      auto* cell2 = TFE_MonitoringGetCellCounter2(counter2, "foo", "bar");
      TFE_MonitoringCounterCellIncrementBy(cell2, 2);
      EXPECT_EQ(TFE_MonitoringCounterCellValue(cell2), 2);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "addedPod", Labels: selector1},
    				Spec: v1.PodSpec{
    					NodeName: "nodeB",
    					Affinity: &v1.Affinity{
    						PodAntiAffinity: antiAffinityFooBar,
    					},
    				},
    			},
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "nodeA", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "nodeB", Labels: label2}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  9. hack/testdata/deployment-label-change3.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: invalid
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx3
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 378 bytes
    - Viewed (0)
  10. hack/testdata/deployment-label-change1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx1
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx1
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 353 bytes
    - Viewed (0)
Back to top