Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkSocket (0.27 sec)

  1. pkg/istio-agent/agent.go

    		// Obtain Pilot SAN, using DNS.
    		pilotSAN = []string{config.GetPilotSan(a.proxyConfig.DiscoveryAddress)}
    	}
    
    	credentialSocketExists, err := checkSocket(context.TODO(), security.CredentialNameSocketPath)
    	if err != nil {
    		return nil, fmt.Errorf("failed to check credential SDS socket: %v", err)
    	}
    	if credentialSocketExists {
    		log.Info("Credential SDS socket found")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. src/runtime/map.go

    			b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
    			if !evacuated(b) {
    				checkBucket = bucket
    			} else {
    				b = (*bmap)(add(it.buckets, bucket*uintptr(t.BucketSize)))
    				checkBucket = noCheck
    			}
    		} else {
    			b = (*bmap)(add(it.buckets, bucket*uintptr(t.BucketSize)))
    			checkBucket = noCheck
    		}
    		bucket++
    		if bucket == bucketShift(it.B) {
    			bucket = 0
    			it.wrapped = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	overflow    *[]unsafe.Pointer
    	oldoverflow *[]unsafe.Pointer
    	startBucket uintptr
    	offset      uint8
    	wrapped     bool
    	B           uint8
    	i           uint8
    	bucket      uintptr
    	checkBucket uintptr
    }
    
    func (h *hiter) initialized() bool {
    	return h.t != nil
    }
    
    // A MapIter is an iterator for ranging over a map.
    // See [Value.MapRange].
    type MapIter struct {
    	m     Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top