Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for bctls (0.04 sec)

  1. okhttp-testing-support/build.gradle.kts

    dependencies {
      api(libs.squareup.okio)
      api(projects.okhttp)
      api(projects.okhttpTls)
      api(libs.assertk)
      api(libs.bouncycastle.bcprov)
      implementation(libs.bouncycastle.bcpkix)
      implementation(libs.bouncycastle.bctls)
      api(libs.conscrypt.openjdk)
      api(libs.openjsse)
    
      api(variantOf(libs.amazonCorretto) {
        classifier("linux-x86_64")
      })
    
      api(libs.hamcrestLibrary)
      api(libs.junit.jupiter.api)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 750 bytes
    - Viewed (0)
  2. okhttp/build.gradle.kts

      compileOnly(libs.bouncycastle.bcprov)
      compileOnly(libs.bouncycastle.bctls)
      compileOnly(libs.conscrypt.openjdk)
      compileOnly(libs.openjsse)
      compileOnly(libs.findbugs.jsr305)
      compileOnly(libs.animalsniffer.annotations)
    
      // graal build support
      compileOnly(libs.nativeImageSvm)
    
      testCompileOnly(libs.bouncycastle.bctls)
      testImplementation(projects.okhttpTestingSupport)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. regression-test/build.gradle.kts

        exclude("org.bouncycastle")
      }
      androidTestImplementation("com.squareup.okhttp3:mockwebserver:${okhttpLegacyVersion}")
      androidTestImplementation(libs.bouncycastle.bcprov)
      androidTestImplementation(libs.bouncycastle.bctls)
      androidTestImplementation(libs.androidx.junit)
      androidTestImplementation(libs.androidx.espresso.core)
      androidTestImplementation(libs.httpClient5)
      androidTestImplementation(libs.squareup.moshi)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. android-test/build.gradle.kts

        exclude("software.amazon.cryptools", "AmazonCorrettoCryptoProvider")
      }
      androidTestImplementation(libs.assertk)
      androidTestImplementation(libs.bouncycastle.bcprov)
      androidTestImplementation(libs.bouncycastle.bctls)
      androidTestImplementation(libs.conscrypt.android)
      androidTestImplementation(projects.mockwebserver3Junit5)
      androidTestImplementation(projects.okhttpBrotli)
      androidTestImplementation(projects.okhttpDnsoverhttps)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. gradle/libs.versions.toml

    bouncycastle-bcpkix = { module = "org.bouncycastle:bcpkix-jdk15to18", version.ref = "org-bouncycastle" }
    bouncycastle-bcprov = { module = "org.bouncycastle:bcprov-jdk15to18", version.ref = "org-bouncycastle" }
    bouncycastle-bctls = { module = "org.bouncycastle:bctls-jdk15to18", version.ref = "org-bouncycastle" }
    brotli-dec = "org.brotli:dec:0.1.2"
    checkStyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkStyle" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/syscall/mksysctl_openbsd.pl

    				}
    			} else {
    				$node = $node[2];
    			}
    			&build_sysctl($node, $nodename, \@nodeoid);
    		} elsif ($node[1] ne '') {
    			$sysctl{$nodename} = \@nodeoid;
    		}
    	}
    }
    
    foreach my $ctl (@ctls) {
    	$ctls{$ctl} = $ctl;
    }
    
    # Build MIB
    foreach my $header (@headers) {
    	&debug("Processing $header...");
    	open HEADER, "/usr/include/$header" ||
    	    print STDERR "Failed to open $header\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    		// TODO: if b contains only OpCopy or OpNot related to b.Controls,
    		// such as Copy(Not(Copy(Less64(v1, v2)))), perhaps it can be optimized.
    		bCtl := b.Controls[0]
    		if bCtl.Block != b && len(b.Values) != 0 || (len(b.Values) != 1 || bCtl.Uses != 1) && bCtl.Block == b {
    			continue
    		}
    
    		for k := 0; k < len(b.Preds); k++ {
    			pk := b.Preds[k]
    			p := pk.b
    			if p.Kind != BlockIf || p == b {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/mime/grammar.go

    }
    
    // isTokenChar reports whether rune is in 'token' as defined by RFC
    // 1521 and RFC 2045.
    func isTokenChar(r rune) bool {
    	// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
    	//             or tspecials>
    	return r > 0x20 && r < 0x7f && !isTSpecial(r)
    }
    
    // isToken reports whether s is a 'token' as defined by RFC 1521
    // and RFC 2045.
    func isToken(s string) bool {
    	if s == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 01:06:05 UTC 2016
    - 828 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	                 of token, separators, and quoted-string>
    //
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
    //
    //	TEXT           = <any OCTET except CTLs,
    //	                  but including LWS>
    //	LWS            = [CRLF] 1*( SP | HT )
    //	CTL            = <any US-ASCII control character
    //	                 (octets 0 - 31) and DEL (127)>
    //
    // RFC 7230 says:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/mime/mediatype.go

    		if needEnc {
    			b.WriteString("utf-8''")
    
    			offset := 0
    			for index := 0; index < len(value); index++ {
    				ch := value[index]
    				// {RFC 2231 section 7}
    				// attribute-char := <any (US-ASCII) CHAR except SPACE, CTLs, "*", "'", "%", or tspecials>
    				if ch <= ' ' || ch >= 0x7F ||
    					ch == '*' || ch == '\'' || ch == '%' ||
    					isTSpecial(rune(ch)) {
    
    					b.WriteString(value[offset:index])
    					offset = index + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top