Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for bctls (0.07 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                ${withModules(
                "org.bouncycastle:bctls-fips",
                "org.bouncycastle:bctls-jdk14",
                "org.bouncycastle:bctls-jdk18on",
            ).addCapability("foo", "bctls")}
                ${selectHighest("foo:bcprov")}
                ${selectHighest("foo:bctls")}
    
                dependencies {
                    implementation("org.bouncycastle:bcprov-jdk14:1.70")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K 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. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    	ctls.AddRegistry(registry1)
    	ctls.AddRegistry(registry2)
    
    	return ctls
    }
    
    // return aggregator and cluster1 and cluster2 service discovery
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		c := net.ListenConfig{}
    
    		ctls := multipleControls{}
    		if s.PermitPortSharing {
    			ctls = append(ctls, permitPortReuse)
    		}
    		if s.PermitAddressSharing {
    			ctls = append(ctls, permitAddressReuse)
    		}
    		if len(ctls) > 0 {
    			c.Control = ctls.Control
    		}
    
    		s.Listener, s.BindPort, err = CreateListener(s.BindNetwork, addr, c)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  10. src/net/http/cookie.go

    //
    //	cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
    //	cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
    //	          ; US-ASCII characters excluding CTLs,
    //	          ; whitespace DQUOTE, comma, semicolon,
    //	          ; and backslash
    //
    // We loosen this as spaces and commas are common in cookie values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top