Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 180 for Odd (0.04 sec)

  1. src/crypto/internal/bigmod/nat_test.go

    	_, err := NewModulusFromBig(big.NewInt(0))
    	if err == nil || err.Error() != expected {
    		t.Errorf("NewModulusFromBig(0) got %q, want %q", err, expected)
    	}
    
    	expected = "modulus must be odd"
    	_, err = NewModulusFromBig(big.NewInt(2))
    	if err == nil || err.Error() != expected {
    		t.Errorf("NewModulusFromBig(2) got %q, want %q", err, expected)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/math/j1.go

    //      1. screen out x<=0 cases: y1(0)=-inf, y1(x<0)=NaN
    //      2. For x<2.
    //         Since
    //              y1(x) = 2/pi*(j1(x)*(ln(x/2)+Euler)-1/x-x/2+5/64*x**3-...)
    //         therefore y1(x)-2/pi*j1(x)*ln(x)-1/x is an odd function.
    //         We use the following function to approximate y1,
    //              y1(x) = x*U(z)/V(z) + (2/pi)*(j1(x)*ln(x)-1/x), z= x**2
    //         where for x in [0,2] (abs err less than 2**-65.89)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

        margin-bottom: 1rem;
    }
    
    td,
    th {
        padding: .25rem .5rem;
        border: 1px solid #e5e5e5;
    }
    
    th {
        text-align: left;
    }
    
    .content tbody tr:nth-child(odd) td,
    .content tbody tr:nth-child(odd) th {
        background-color: #f9f9f9;
    }
    
    /* typography */
    h1, h2, h3, h4, h5, h6 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-weight: 500;
        color: #02303A;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/fmt/scan_test.go

    	check("colon pair b", b)
    	a = nil
    	b = nil
    
    	// This one fails because there is a hex byte after the data,
    	// that is, an odd number of hex input bytes.
    	n, err = Sscanf("000102034:", "%x", &a)
    	if n != 0 || err == nil {
    		t.Errorf("odd count: got count, err = %d, %v; expected 0, error", n, err)
    	}
    }
    
    func TestScanNewlinesAreSpaces(t *testing.T) {
    	var a, b int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"no routes", nothing, 0, nil, ""},
    		{"badDestination", badDestination, 0, nil, "invalid IPv4"},
    		{"badGateway", badGateway, 0, nil, "invalid IPv4"},
    		{"route_Invalidhex", route_Invalidhex, 0, nil, "odd length hex string"},
    		{"no default routes", noInternetConnection, 0, nil, ""},
    	}
    	for _, tc := range testCases {
    		r := strings.NewReader(tc.route)
    		routes, err := getIPv4DefaultRoutes(r)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    		"0x6AADD3E3E424D5B713FCAA8D8945B1E055166132038C57BBD2D51C833F0C5EA2007A2324CE514F8E8C2F008A2F36F44005A4039CB55830986F734C93DAF0EB4BAB54A6A8C7081864F44346E9BC6F0A3EB9F2C0146A00C6A05187D0C101E1F2D038CDB70CB5E9E05A2D188AB6CBB46286624D4415E7D4DB...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/regexp/onepass.go

    func mergeRuneSets(leftRunes, rightRunes *[]rune, leftPC, rightPC uint32) ([]rune, []uint32) {
    	leftLen := len(*leftRunes)
    	rightLen := len(*rightRunes)
    	if leftLen&0x1 != 0 || rightLen&0x1 != 0 {
    		panic("mergeRuneSets odd length []rune")
    	}
    	var (
    		lx, rx int
    	)
    	merged := make([]rune, 0)
    	next := make([]uint32, 0)
    	ok := true
    	defer func() {
    		if !ok {
    			merged = nil
    			next = nil
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. pkg/api/pod/warnings.go

    					} else if port.HostPort == 0 || other.port.HostPort == 0 {
    						// HostPort = 0 is redundant with any other value, which is odd but not really dangerous.  HostIP doesn't matter here.
    						warnings = append(warnings, fmt.Sprintf("%s: overlapping port definition with %s", fldPath.Child("ports").Index(i), other.field))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AggregateFuture.java

         */
        if (throwable instanceof Error) {
          /*
           * TODO(cpovirk): Do we really want to log this if we called setException(throwable) and it
           * returned true? This was intentional (CL 46470009), but it seems odd compared to how we
           * normally handle Error.
           *
           * Similarly, do we really want to log the same Error more than once?
           */
          log(throwable);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/mvs_test.go

    # downgrade to either of those without pulling the other back up a little.
    #
    # B2.hidden and C2.hidden are both compatible with D1, so that still
    # meets our requirements — but then we're in an odd state in which
    # B and C have both been downgraded to hidden versions, without any
    # remaining requirements to explain how those hidden versions got there.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top