Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 170 for coordinationv1 (0.29 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1beta1.Lease.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 453 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 448 bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/role.yaml

    # For status controller, so it can delete the distribution report configmap
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    # For gateway deployment controller
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 971 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1beta1/register.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "coordination.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 27 11:30:13 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  5. misc/cgo/gmp/fib.go

    package main
    
    import (
    	big "."
    	"runtime"
    )
    
    func fibber(c chan *big.Int, out chan string, n int64) {
    	// Keep the fibbers in dedicated operating system
    	// threads, so that this program tests coordination
    	// between pthreads and not just goroutines.
    	runtime.LockOSThread()
    
    	i := big.NewInt(n)
    	if n == 0 {
    		c <- i
    	}
    	for {
    		j := <-c
    		out <- j.String()
    		i.Add(i, j)
    		c <- i
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 919 bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/role.yaml

    # For status controller, so it can delete the distribution report configmap
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    # For gateway deployment controller
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
      verbs: ["get", "update", "patch", "create"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "roles",
                    "rolebindings"
                ],
                "verbs": [
                    "*"
                ]
            },
            {
                "apiGroups": [
                    "coordination.k8s.io"
                ],
                "resources": [
                    "leases"
                ],
                "verbs": [
                    "get",
                    "create",
                    "update"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/coordination/v1beta1/lease.go

    	b := &LeaseApplyConfiguration{}
    	err := managedfields.ExtractInto(lease, internal.Parser().Type("io.k8s.api.coordination.v1beta1.Lease"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(lease.Name)
    	b.WithNamespace(lease.Namespace)
    
    	b.WithKind("Lease")
    	b.WithAPIVersion("coordination.k8s.io/v1beta1")
    	return b, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__coordination.k8s.io_openapi.json

            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/apis/coordination.k8s.io/": {
          "get": {
            "description": "get information of a group",
            "operationId": "getCoordinationAPIGroup",
            "responses": {
              "200": {
                "content": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/coordination/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *Lease) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "coordination.k8s.io", Version: "v1", Kind: "Lease"}
    }
    
    // APILifecycleRemoved is an autogenerated function, returning the release in which the API is no longer served as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top