Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for Lease (0.39 sec)

  1. pkg/config/schema/gvk/resources.gen.go

    	KubernetesGateway_v1           = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1", Kind: "Gateway"}
    	Lease                          = config.GroupVersionKind{Group: "coordination.k8s.io", Version: "v1", Kind: "Lease"}
    	MeshConfig                     = config.GroupVersionKind{Group: "", Version: "v1alpha1", Kind: "MeshConfig"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. internal/config/etcd/etcd.go

    	}
    	cli, err := clientv3.New(cfg.Config)
    	if err != nil {
    		return nil, err
    	}
    	cli.KV = namespace.NewKV(cli.KV, cfg.PathPrefix)
    	cli.Watcher = namespace.NewWatcher(cli.Watcher, cfg.PathPrefix)
    	cli.Lease = namespace.NewLease(cli.Lease, cfg.PathPrefix)
    	return cli, nil
    }
    
    func parseEndpoints(endpoints string) ([]string, bool, error) {
    	etcdEndpoints := strings.Split(endpoints, config.ValueSeparator)
    
    	var etcdSecure bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.Ingress, true
    	case *k8sioapinetworkingv1.IngressClass:
    		return gvk.IngressClass, true
    	case *sigsk8siogatewayapiapisv1beta1.Gateway:
    		return gvk.KubernetesGateway, true
    	case *k8sioapicoordinationv1.Lease:
    		return gvk.Lease, true
    	case *istioioapimeshv1alpha1.MeshConfig:
    		return gvk.MeshConfig, true
    	case *istioioapimeshv1alpha1.MeshNetworks:
    		return gvk.MeshNetworks, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

        /**
         * Releases any project state locks or task execution locks currently held by this thread, allowing the current
         * thread to run as if it were executing an isolated task.
         *
         * Does not release worker lease.
         */
        void runAsIsolatedTask();
    
        /**
         * Returns {@code true} when this registry grants multiple threads access to projects (but no more than one thread per given project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                            stats.startWaitingForNextItem();
                            // Release worker lease while waiting
                            workerLease.unlock();
                            return RETRY;
                        }
    
                        // Have a worker lease and work may be available
    
                        WorkSource.Selection<WorkItem> workItem;
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/coordination/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Lease) APILifecycleIntroduced() (major, minor int) {
    	return 1, 14
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. manifests/charts/default/templates/mutatingwebhook.yaml

          operator: DoesNotExist
        - key: istio.io/rev
          operator: DoesNotExist
        - key: "kubernetes.io/metadata.name"
          operator: "NotIn"
          values: ["kube-system","kube-public","kube-node-lease","local-path-storage"]
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: DoesNotExist
        - key: istio.io/rev
          operator: DoesNotExist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	status                   *v1.NodeStatus
    	lease                    *coordv1.Lease
    }
    
    func (n *nodeHealthData) deepCopy() *nodeHealthData {
    	if n == nil {
    		return nil
    	}
    	return &nodeHealthData{
    		probeTimestamp:           n.probeTimestamp,
    		readyTransitionTimestamp: n.readyTransitionTimestamp,
    		status:                   n.status.DeepCopy(),
    		lease:                    n.lease.DeepCopy(),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission.go

    	}
    
    	// the request must come from a node with the same name as the lease
    	if a.GetOperation() == admission.Create {
    		// a.GetName() won't return the name on create, so we drill down to the proposed object
    		lease, ok := a.GetObject().(*coordapi.Lease)
    		if !ok {
    			return admission.NewForbidden(a, fmt.Errorf("unexpected type %T", a.GetObject()))
    		}
    		if lease.Name != nodeName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	Lease = resource.Builder{
    		Identifier:    "Lease",
    		Group:         "coordination.k8s.io",
    		Kind:          "Lease",
    		Plural:        "leases",
    		Version:       "v1",
    		Proto:         "k8s.io.api.coordination.v1.LeaseSpec",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top