Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for label_end (0.17 sec)

  1. src/cmd/internal/obj/ppc64/asm_test.go

    	fmt.Fprintln(buf, "TEXT f(SB),0,$0-0")
    	fmt.Fprintln(buf, "label_start:")
    	fmt.Fprintln(buf, jmpinsn, "label_end")
    	for i := 0; i < (1<<15 + 10); i++ {
    		fmt.Fprintln(buf, "MOVD R0, R1")
    	}
    	fmt.Fprintln(buf, jmpinsn, "label_start")
    	fmt.Fprintln(buf, "label_end:")
    	fmt.Fprintln(buf, "MOVD R0, R1")
    	fmt.Fprintln(buf, "RET")
    }
    
    // TestPCalign generates two asm files containing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/controller/util/selectors/bimultimap.go

    	}
    	labeled := m.labeledBySelecting[selectorKey]
    	labeled.refCount++
    	for _, labeledObject := range labeled.objects {
    		// Associate selecting with labeled.
    		selecting := m.selectingByLabeled[labeledObject.labelsKey]
    		selecting.objects[selectingObject.key] = selectingObject
    	}
    }
    
    // DeleteSelector deletes a selecting object and associations created by its
    // selector.
    func (m *BiMultimap) DeleteSelector(key Key) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_utils_test.go

    	}{
    		{
    			"1 fully labelled pod",
    			fullyLabelledRS,
    			[]*v1.Pod{
    				newPod("pod1", fullyLabelledRS, v1.PodRunning, nil, true),
    			},
    			apps.ReplicaSetStatus{
    				Replicas:             1,
    				FullyLabeledReplicas: 1,
    				ReadyReplicas:        1,
    				AvailableReplicas:    1,
    			},
    		},
    		{
    			"1 not fully labelled pod",
    			notFullyLabelledRS,
    			[]*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 19 20:18:23 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    	m.latencies.Reset()
    	m.failures.Reset()
    }
    
    // ObserveDialStart records the start of a dial attempt, labeled by protocol, transport.
    func (m *DialMetrics) ObserveDialStart(protocol, transport string) {
    	m.starts.WithLabelValues(protocol, transport).Inc()
    }
    
    // ObserveDialLatency records the latency of a dial, labeled by protocol, transport.
    func (m *DialMetrics) ObserveDialLatency(elapsed time.Duration, protocol, transport string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. .github/workflows/arm-ci.yml

        branches:
          - master
          - r2.**
    permissions:
      contents: read
    
    jobs:
      build:
        # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
        if: github.repository == 'tensorflow/tensorflow' && (github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'kokoro:force-run'))
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics_test.go

    	}{
    		{
    			desc: "observe policy admission",
    			want: `
    			# HELP apiserver_validating_admission_policy_check_duration_seconds [ALPHA] Validation admission latency for individual validation expressions in seconds, labeled by policy and further including binding, state and enforcement action taken.
                # TYPE apiserver_validating_admission_policy_check_duration_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/branches.go

    		return alt
    	}
    	l := &label{b, s, false}
    	labels[name] = l
    	return l
    }
    
    // gotoTarget returns the labeled statement matching the given name and
    // declared in block b or any of its enclosing blocks. The result is nil
    // if the label is not defined, or doesn't match a valid labeled statement.
    func (ls *labelScope) gotoTarget(b *block, name string) *LabeledStmt {
    	if l := ls.labels[name]; l != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  8. pkg/kube/krt/index_test.go

    	assert.Equal(t, fetchSorted("1.2.3.4"), []SimplePod{{NewNamed(pod), Labeled{}, "1.2.3.4"}})
    
    	pod.Status.PodIP = "1.2.3.5"
    	pc.UpdateStatus(pod)
    	tt.WaitUnordered("update/namespace/name")
    	assert.Equal(t, fetchSorted("1.2.3.4"), []SimplePod{})
    	assert.Equal(t, fetchSorted("1.2.3.5"), []SimplePod{{NewNamed(pod), Labeled{}, "1.2.3.5"}})
    
    	pod2 := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. .github/workflows/issue-manager.yml

    name: Issue Manager
    
    on:
      schedule:
        - cron: "10 3 * * *"
      issue_comment:
        types:
          - created
      issues:
        types:
          - labeled
      pull_request_target:
        types:
          - labeled
      workflow_dispatch:
    
    jobs:
      issue-manager:
        if: github.repository_owner == 'tiangolo'
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 30 18:46:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top