Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 for 01200 (0.04 sec)

  1. src/crypto/ecdh/ecdh_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/StatusLineTest.kt

        assertInvalid(" 200 OK")
      }
    
      @Test
      fun protocolVersions() {
        assertInvalid("HTTP/2.0 200 OK")
        assertInvalid("HTTP/2.1 200 OK")
        assertInvalid("HTTP/-.1 200 OK")
        assertInvalid("HTTP/1.- 200 OK")
        assertInvalid("HTTP/0.1 200 OK")
        assertInvalid("HTTP/101 200 OK")
        assertInvalid("HTTP/1.1_200 OK")
      }
    
      @Test
      fun nonThreeDigitCode() {
        assertInvalid("HTTP/1.1  OK")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue2615.go

    	} else if x[0]&(1<<19) != 0 {
    		return 19
    	} else if x[0]&(1<<20) != 0 {
    		return 20
    	} else if x[0]&(1<<21) != 0 {
    		return 21
    	} else if x[0]&(1<<22) != 0 {
    		return 22
    	} else if x[0]&(1<<23) != 0 {
    		return 23
    	} else if x[0]&(1<<24) != 0 {
    		return 24
    	} else if x[0]&(1<<25) != 0 {
    		return 25
    	} else if x[0]&(1<<26) != 0 {
    		return 26
    	} else if x[0]&(1<<27) != 0 {
    		return 27
    	} else if x[0]&(1<<28) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 11.5K bytes
    - Viewed (0)
  4. test/fixedbugs/bug349.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1192 - detail in error
    
    package main
    
    func foo() (a, b, c int) {
    	return 0, 1 2.01  // ERROR "unexpected literal 2.01|expected ';' or '}' or newline|not enough arguments to return"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 367 bytes
    - Viewed (0)
  5. fastapi/params.py

            max_length: Optional[int] = None,
            pattern: Optional[str] = None,
            regex: Annotated[
                Optional[str],
                deprecated(
                    "Deprecated in FastAPI 0.100.0 and Pydantic v2, use `pattern` instead."
                ),
            ] = None,
            discriminator: Union[str, None] = None,
            strict: Union[bool, None] = _Unset,
            multiple_of: Union[float, None] = _Unset,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

                    super.printByLtsv(valueMap);
                }
    
                @Override
                protected void printByEcs(final Map<String, String> valueMap) {
                    valueMap.put("time", "2022-01-01T00:00:00.000Z");
                    valueMap.remove("ip");
                    super.printByEcs(valueMap);
                }
    
                @Override
                protected void printLog(final String message) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

                }
            }
    
            then:
            getXml(testClass, options) == """<?xml version="1.0" encoding="UTF-8"?>
    <testsuite name="com.Foo" tests="2" skipped="0" failures="0" errors="0" timestamp="1970-01-01T00:00:00" hostname="localhost" time="1.0">
      <properties/>
      <testcase name="m1" classname="com.Foo" time="1.0">
        <system-out><![CDATA[ m1-out-1 m1-out-2]]></system-out>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. test/const1.go

    	b14  byte = byte(100) * byte(100) // ERROR "overflow|cannot convert"
    	b15  byte = byte(100) * 100       // ERROR "overflow|cannot convert"
    	b16  byte = byte(0) * 1000        // ERROR "overflow|cannot convert"
    	b16a byte = 0 * 1000              // OK
    	b17  byte = byte(0) * byte(1000)  // ERROR "overflow|cannot convert"
    	b18  byte = Uint8 / 0             // ERROR "division by zero"
    
    	c1 float64 = Big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_proto.go

    // protobuf marshalling/unmarshalling. It is generated into a serialization
    // that matches Time. Do not use in Go structs.
    type Timestamp struct {
    	// Represents seconds of UTC time since Unix epoch
    	// 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
    	// 9999-12-31T23:59:59Z inclusive.
    	Seconds int64 `json:"seconds" protobuf:"varint,1,opt,name=seconds"`
    	// Non-negative fractions of a second at nanosecond resolution. Negative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 25 18:54:00 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  10. test/literal2.go

    	assert(00089i == complex(0, 89)) // decimal digits despite leading 0 for backward-compatibility
    
    	// decimals
    	assert(1_000_000 == 1000000)
    	assert(1_000i == complex(0, 1000))
    
    	// hexadecimals
    	assert(0x_1 == 0x1)
    	assert(0x1_2 == 0x12)
    	assert(0x_cafe_f00d == 0xcafef00d)
    	assert(0x_cafei == complex(0, 0xcafe))
    
    	// octals
    	assert(0o_1 == 01)
    	assert(0o12 == 012)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 22:45:09 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top