Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,088 for label23 (0.15 sec)

  1. src/internal/types/testdata/check/labels.go

    // This file is a modified concatenation of the files
    // $GOROOT/test/label.go and $GOROOT/test/label1.go.
    
    package labels
    
    var x int
    
    func f0() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	for {
    	}
    L2 /* ERROR "label L2 declared and not used" */ :
    	select {
    	}
    L3 /* ERROR "label L3 declared and not used" */ :
    	switch {
    	}
    L4 /* ERROR "label L4 declared and not used" */ :
    	if true {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips64.s

    // BEQ/BNE
    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label1:
    	BEQ	R1, 1(PC)	// BEQ R1, 1(PC)	// 10200001
    	BEQ	R1, label1	// BEQ R1, 18		// 1020fffd
    
    //	LBRA rreg ',' sreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label2:
    	BEQ	R1, R2, 1(PC)	// BEQ R1, R2, 1(PC)	// 10220001
    	BEQ	R1, R2, label2	// BEQ R1, R2, 20	// 1022fffd
    
    //
    // other integer conditional branch
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. operator/pkg/util/label.go

    // SetLabel is a helper function which sets the specified label and value on the specified object.
    func SetLabel(resource runtime.Object, label, value string) error {
    	resourceAccessor, err := meta.Accessor(resource)
    	if err != nil {
    		return err
    	}
    	labels := resourceAccessor.GetLabels()
    	if labels == nil {
    		labels = map[string]string{}
    	}
    	labels[label] = value
    	resourceAccessor.SetLabels(labels)
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers_test.go

    			},
    			want: true,
    		},
    		{
    			name: "label does not match MatchLabelExpressions terms",
    			args: args{
    				topologySelectorTerms: []v1.TopologySelectorTerm{
    					{
    						MatchLabelExpressions: []v1.TopologySelectorLabelRequirement{{
    							Key:    "label_1",
    							Values: []string{"label_1_val"},
    						}},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/volume/downwardapi/downwardapi_test.go

    				verifyMapInFile{stepName{"labels"}, labels2},
    			},
    		},
    		{
    			name: "test_write_with_unix_path",
    			files: map[string]string{
    				"these/are/my/labels":        "metadata.labels",
    				"these/are/your/annotations": "metadata.annotations",
    			},
    			podLabels:      labels1,
    			podAnnotations: annotations,
    			steps: []testStep{
    				verifyMapInFile{stepName{"these/are/my/labels"}, labels1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_experimental.h

                                      const char* label1, const char* label2);
    
    // APIs for String Gauge with 3 labels.
    typedef struct TFE_MonitoringStringGauge3 TFE_MonitoringStringGauge3;
    TF_CAPI_EXPORT extern TFE_MonitoringStringGauge3* TFE_MonitoringNewStringGauge3(
        const char* name, TF_Status* out_status, const char* description,
        const char* label1, const char* label2, const char* label3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    					Annotations: map[string]string{},
    				},
    			},
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "node1", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node2", Labels: label2}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node3", Labels: label3}},
    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  8. pkg/test/framework/label/labels.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package label
    
    const (
    	// Postsubmit indicates that the test should be run as part of a postsubmit run only.
    	Postsubmit Instance = "postsubmit"
    
    	// CustomSetup indicates that the test requires a custom Istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    			name:         "no resources requested, pods without container scheduled",
    			pods: []*v1.Pod{
    				st.MakePod().Node("node1").Labels(labels2).Obj(),
    				st.MakePod().Node("node1").Labels(labels1).Obj(),
    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    			},
    			args:        config.NodeResourcesBalancedAllocationArgs{Resources: defaultResourceBalancedAllocationSet},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/mips.s

    //
    // BEQ/BNE
    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label1:
    	BEQ	R1, 1(PC)
    	BEQ	R1, label1	// BEQ R1, 81
    
    //	LBRA rreg ',' sreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label2:
    	BEQ	R1, R2, 1(PC)
    	BEQ	R1, R2, label2	// BEQ R1, R2, 83
    
    //
    // other integer conditional branch
    //
    //	LBRA rreg ',' rel
    //	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top