Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for colonna (0.22 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://[::1]/").host).isEqualTo("::1")
    
        // ... but they're included in toString().
        assertThat(parse("http://[::1]/").toString()).isEqualTo("http://[::1]/")
    
        // IPv6 colons don't interfere with port numbers or passwords.
        assertThat(parse("http://[::1]:8080/").port).isEqualTo(8080)
        assertThat(parse("http://user:password@[::1]/").password).isEqualTo("password")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

                while (++i < limit) {
                  if (input[i] == ']') break
                }
              }
              ':' -> return i
            }
            i++
          }
          return limit // No colon.
        }
    
        private fun parsePort(
          input: String,
          pos: Int,
          limit: Int,
        ): Int {
          return try {
            // Canonicalize the port string to skip '\n' etc.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    coach
    
    // codes : 2013-10-31 Binky Moon, LLC
    codes
    
    // coffee : 2013-10-17 Binky Moon, LLC
    coffee
    
    // college : 2014-01-16 XYZ.COM LLC
    college
    
    // cologne : 2014-02-05 dotKoeln GmbH
    cologne
    
    // comcast : 2015-07-23 Comcast IP Holdings I, LLC
    comcast
    
    // commbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA
    commbank
    
    // community : 2013-12-05 Binky Moon, LLC
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      /**
       * Old implementations of OkHttp's response cache wrote header fields like ":status: 200 OK". This
       * broke our cached response parser because it split on the first colon. This regression test
       * exists to help us read these old bad cache entries.
       *
       * https://github.com/square/okhttp/issues/227
       */
      @Test
      fun testGoldenCacheResponse() {
        cache.close()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.24.md

    - Fixed kubectl bug where bash completions don't work if `--context` flag is specified with a value that contains a colon. ([#107439](https://github.com/kubernetes/kubernetes/pull/107439), [@brianpursley](https://github.com/brianpursley))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Aug 24 00:02:43 GMT 2023
    - 473.4K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg go/ast, type InterfaceType struct, Methods *FieldList
    pkg go/ast, type KeyValueExpr struct
    pkg go/ast, type KeyValueExpr struct, Colon token.Pos
    pkg go/ast, type KeyValueExpr struct, Key Expr
    pkg go/ast, type KeyValueExpr struct, Value Expr
    pkg go/ast, type LabeledStmt struct
    pkg go/ast, type LabeledStmt struct, Colon token.Pos
    pkg go/ast, type LabeledStmt struct, Label *Ident
    pkg go/ast, type LabeledStmt struct, Stmt Stmt
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. api/go1.1.txt

    pkg go/token, const ARROW = 36
    pkg go/token, const ASSIGN = 42
    pkg go/token, const BREAK = 61
    pkg go/token, const CASE = 62
    pkg go/token, const CHAN = 63
    pkg go/token, const CHAR = 8
    pkg go/token, const COLON = 58
    pkg go/token, const COMMA = 52
    pkg go/token, const COMMENT = 2
    pkg go/token, const CONST = 64
    pkg go/token, const CONTINUE = 65
    pkg go/token, const DEC = 38
    pkg go/token, const DEFAULT = 66
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top