Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for acquireTime (0.14 sec)

  1. staging/src/k8s.io/api/coordination/v1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.AcquireTime == nil {
    				m.AcquireTime = &v1.MicroTime{}
    			}
    			if err := m.AcquireTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/coordination/v1beta1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.AcquireTime == nil {
    				m.AcquireTime = &v1.MicroTime{}
    			}
    			if err := m.AcquireTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1.Lease.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1beta1.Lease.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		}
    	}
    
    	// 3. We're going to try to update. The leaderElectionRecord is set to it's default
    	// here. Let's correct it before updating.
    	if le.IsLeader() {
    		leaderElectionRecord.AcquireTime = oldLeaderElectionRecord.AcquireTime
    		leaderElectionRecord.LeaderTransitions = oldLeaderElectionRecord.LeaderTransitions
    	} else {
    		leaderElectionRecord.LeaderTransitions = oldLeaderElectionRecord.LeaderTransitions + 1
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	// For channels, waitlink is only accessed by g.
    	// For semaphores, all fields (including the ones above)
    	// are only accessed when holding a semaRoot lock.
    
    	acquiretime int64
    	releasetime int64
    	ticket      uint32
    
    	// isSelect indicates g is participating in a select, so
    	// g.selectDone must be CAS'd to win the wake-up race.
    	isSelect bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    type SemTable struct {
    	semTable
    }
    
    // Enqueue simulates enqueuing a waiter for a semaphore (or lock) at addr.
    func (t *SemTable) Enqueue(addr *uint32) {
    	s := acquireSudog()
    	s.releasetime = 0
    	s.acquiretime = 0
    	s.ticket = 0
    	t.semTable.rootFor(addr).queue(addr, s, false)
    }
    
    // Dequeue simulates dequeuing a waiter for a semaphore (or lock) at addr.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

            "description": "LeaseSpec is a specification of a Lease.",
            "properties": {
              "acquireTime": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime"
                  }
                ],
                "description": "acquireTime is a time when the current lease was acquired."
              },
              "holderIdentity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
Back to top