Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,088 for label23 (0.12 sec)

  1. .github/workflows/label-approved.yml

    name: Label Approved
    
    on:
      schedule:
        - cron: "0 12 * * *"
      workflow_dispatch:
    
    jobs:
      label-approved:
        if: github.repository_owner == 'tiangolo'
        runs-on: ubuntu-latest
        steps:
        - name: Dump GitHub context
          env:
            GITHUB_CONTEXT: ${{ toJson(github) }}
          run: echo "$GITHUB_CONTEXT"
        - uses: docker://tiangolo/label-approved:0.0.4
          with:
            token: ${{ secrets.FASTAPI_LABEL_APPROVED }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 18:43:10 UTC 2024
    - 610 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/syntax/branches.go

    	name := s.Label.Value
    	labels := ls.labels
    	if labels == nil {
    		labels = make(map[string]*label)
    		ls.labels = labels
    	} else if alt := labels[name]; alt != nil {
    		ls.err(s.Label.Pos(), "label %s already defined at %s", name, alt.lstmt.Label.Pos().String())
    		return alt
    	}
    	l := &label{b, s, false}
    	labels[name] = l
    	return l
    }
    
    // gotoTarget returns the labeled statement matching the given name and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  6. releasenotes/notes/network-label.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 25500
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 360 bytes
    - Viewed (0)
  7. src/go/parser/testdata/resolution/resolution.src

    	}
    }
    
    type c /* =@cdecl */ map[token.Pos]resolvedObj
    
    func (v /* =@vdecl */ c /* @cdecl */) Visit(node /* =@nodearg */ ast.Node) (w /* =@w */ ast.Visitor) {}
    
    const (
    	basic /* =@basic */ = iota
    	labelOk // =@labelOk
    )
    
    type T /* =@T */ int
    
    func _(count /* =@count */ T /* @T */) {
    	x /* =@x1 */ := c /* @cdecl */{}
    	switch x /* =@x2 */ := x /* @x1 */; x /* =@x3 */ := x /* @x2 */.(type) {
    	case c /* @cdecl */:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 21:19:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. .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)
  9. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 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