Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for mypair (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

      private lateinit var server: MockWebServer
      private lateinit var client: OkHttpClient
    
      val listener = RecordingEventListener()
    
      fun setUp(mode: Pair<CancelMode, ConnectionType>) {
        this.cancelMode = mode.first
        this.connectionType = mode.second
    
        if (connectionType == H2) {
          platform.assumeHttp2Support()
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	{"GoBytes", C.GoBytes(unsafe.Pointer(C.greeting), 5), []byte(greeting[:5])},
    }
    
    func testHelpers(t *testing.T) {
    	for _, pair := range testPairs {
    		if !reflect.DeepEqual(pair.Got, pair.Want) {
    			t.Errorf("%s: got %#v, want %#v", pair.Name, pair.Got, pair.Want)
    		}
    	}
    }
    
    // basic test cases
    
    const EINVAL = C.EINVAL /* test #define */
    
    var KILO = C.KILO
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. cni/test/install_cni.go

    	expectedPostCleanFile, tempCNIConfDir, tempCNIBinDir, tempK8sSvcAcctDir string,
    ) {
    	t.Logf("prior cni-conf='%v', expected result='%v'", preConfFile, resultFileName)
    
    	// disable monitoring & repair
    	viper.Set(constants.MonitoringPort, 0)
    	viper.Set(constants.RepairEnabled, false)
    
    	// Don't set the CNI conf file env var if preConfFile is not set
    	var envPreconf string
    	if preConfFile != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

        val privateKey =
          keyFactory.generatePrivate(
            PKCS8EncodedKeySpec(privateKeyBytes.toByteArray()),
          )
        val heldCertificate =
          HeldCertificate.Builder()
            .keyPair(publicKey, privateKey)
            .commonName("cash.app")
            .validityInterval(0L, 1000L)
            .rsa2048()
            .build()
        assertThat(
          """
          |-----BEGIN CERTIFICATE-----
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    	// R_RISCV_CALL resolves a 32 bit PC-relative address for an AUIPC + JALR
    	// instruction pair.
    	R_RISCV_CALL
    
    	// R_RISCV_PCREL_ITYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + I-type instruction pair.
    	R_RISCV_PCREL_ITYPE
    
    	// R_RISCV_PCREL_STYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + S-type instruction pair.
    	R_RISCV_PCREL_STYPE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

                if (rightValue == null) {
                    setDiff.leftOnly.add(leftEntry.getValue());
                } else {
                    Pair<T, T> pair = Pair.of(leftEntry.getValue(), rightValue);
                    setDiff.common.add(pair);
                }
            }
    
            for (T rightValue : indexedRight.values()) {
                setDiff.rightOnly.add(rightValue);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util.cc

        const absl::flat_hash_map<absl::string_view, int>& histogram) {
      for (const auto& pair : histogram) {
        XlaAutoClusteringSummary::OpAndCount* new_entry = result->Add();
        new_entry->set_op(std::string(pair.first));
        new_entry->set_count(pair.second);
      }
    
      absl::c_sort(*result, [](const XlaAutoClusteringSummary::OpAndCount& a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            // Find failure section
            Pair<LogContent, LogContent> match = withoutDebug.splitOnFirstMatchingLine(FAILURE_PATTERN);
            if (match == null) {
                // Not present in output, check error output.
                match = LogContent.of(error).ansiCharsToPlainText().removeDebugPrefix().splitOnFirstMatchingLine(FAILURE_PATTERN);
                if (match != null) {
                    match = Pair.of(withoutDebug, match.getRight());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.app.service.FailureUrlService;
    import org.codelibs.fess.crawler.builder.RequestDataBuilder;
    import org.codelibs.fess.crawler.client.CrawlerClient;
    import org.codelibs.fess.crawler.entity.RequestData;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

    import org.gradle.api.internal.specs.ExplainingSpecs;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Pair;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.logging.progress.ProgressLogger;
    import org.gradle.internal.logging.progress.ProgressLoggerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top