Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for compareIDs (0.23 sec)

  1. src/runtime/stack.go

    )
    
    /*
    Stack layout parameters.
    Included both by runtime (compiled via 6c) and linkers (compiled via gcc).
    
    The per-goroutine g->stackguard is set to point StackGuard bytes
    above the bottom of the stack.  Each function compares its stack
    pointer against g->stackguard to check for overflow.  To cut one
    instruction from the check sequence for functions with tiny frames,
    the stack is allowed to protrude StackSmall bytes below the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    		out.ServiceAccounts = make([]string, len(s.ServiceAccounts))
    		copy(out.ServiceAccounts, s.ServiceAccounts)
    	}
    	out.ClusterVIPs = *s.ClusterVIPs.DeepCopy()
    	return &out
    }
    
    // Equals compares two service objects.
    func (s *Service) Equals(other *Service) bool {
    	if s == nil {
    		return other == nil
    	}
    	if other == nil {
    		return s == nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/net/http/clientserver_test.go

    	}
    	if got, haveCL := res.Header["Content-Length"]; haveCL {
    		t.Errorf("Unexpected Content-Length: %q", got)
    	}
    }
    
    type reqFunc func(c *Client, url string) (*Response, error)
    
    // h12Compare is a test that compares HTTP/1 and HTTP/2 behavior
    // against each other.
    type h12Compare struct {
    	Handler            func(ResponseWriter, *Request)    // required
    	ReqFunc            reqFunc                           // optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. src/math/big/float.go

    	if x.form == zero || y.form == inf {
    		// ±0 / y
    		// x / ±Inf
    		z.form = zero
    		return z
    	}
    
    	// x / ±0
    	// ±Inf / y
    	z.form = inf
    	return z
    }
    
    // Cmp compares x and y and returns:
    //
    //	-1 if x <  y
    //	 0 if x == y (incl. -0 == 0, -Inf == -Inf, and +Inf == +Inf)
    //	+1 if x >  y
    func (x *Float) Cmp(y *Float) int {
    	if debugFloat {
    		x.validate()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top