Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for watchlist (0.16 sec)

  1. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "networking_v1alpha1"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "networking.k8s.io",
              "kind": "IPAddress",
              "version": "v1alpha1"
            }
          },
          "parameters": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "flowcontrolApiserver_v1beta3"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "flowcontrol.apiserver.k8s.io",
              "kind": "FlowSchema",
              "version": "v1beta3"
            }
          },
          "parameters": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "flowcontrolApiserver_v1"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "flowcontrol.apiserver.k8s.io",
              "kind": "FlowSchema",
              "version": "v1"
            }
          },
          "parameters": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "admissionregistration_v1"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "admissionregistration.k8s.io",
              "kind": "MutatingWebhookConfiguration",
              "version": "v1"
            }
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    const (
    	// InitialEventsAnnotationKey the name of the key
    	// under which an annotation marking the end of
    	// a watchlist stream is stored.
    	//
    	// The annotation is added to a "Bookmark" event.
    	InitialEventsAnnotationKey = "k8s.io/initial-events-end"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. src/regexp/syntax/compile.go

    // head == 0 denotes the empty list, okay because we start every program
    // with a fail instruction, so we'll never want to point at its output link.
    type patchList struct {
    	head, tail uint32
    }
    
    func makePatchList(n uint32) patchList {
    	return patchList{n, n}
    }
    
    func (l patchList) patch(p *Prog, val uint32) {
    	head := l.head
    	for head != 0 {
    		i := &p.Inst[head>>1]
    		if head&1 == 0 {
    			head = i.Out
    			i.Out = val
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. test/abi/zombie_struct_select.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type patchlist struct {
    	head, tail uint32
    }
    
    type frag struct {
    	i   uint32
    	out patchlist
    }
    
    //go:noinline
    //go:registerparams
    func patch(l patchlist, i uint32) {
    }
    
    //go:noinline
    //go:registerparams
    func badbad(f1, f2 frag) frag {
    	// concat of failure is failure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 17:58:59 UTC 2021
    - 676 bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "storage_v1alpha1"
            ],
            "x-kubernetes-action": "watchlist",
            "x-kubernetes-group-version-kind": {
              "group": "storage.k8s.io",
              "kind": "VolumeAttributesClass",
              "version": "v1alpha1"
            }
          },
          "parameters": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4847.go

    // Issue 4847: initialization cycle is not detected.
    
    package p
    
    type (
    	E int
    	S int
    )
    
    type matcher func(s *S) E
    
    func matchList(s *S) E { return matcher(matchAnyFn)(s) }
    
    var foo = matcher(matchList)
    
    var matchAny = matcher(matchList) // ERROR "initialization cycle|depends upon itself"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 519 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/init1.go

    func f6() { _ = y6 }
    
    // full test case
    
    type (
          E int
          S int
    )
    
    type matcher func(s *S) E
    
    func matchList(s *S) E { return matcher(matchAnyFn)(s) }
    
    var foo = matcher(matchList)
    
    var matchAny /* ERROR "initialization cycle" */ = matcher(matchList)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top