Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 502 for picard (0.12 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

            APPLE("apple", "Apple"),
            AZUL("azul systems", "Azul Zulu"),
            BELLSOFT("bellsoft", "BellSoft Liberica"),
            GRAAL_VM("graalvm community", "GraalVM Community"),
            HEWLETT_PACKARD("hewlett-packard", "HP-UX"),
            IBM("ibm", "ibm|international business machines corporation", "IBM"),
            JETBRAINS("jetbrains", "JetBrains"),
            MICROSOFT("microsoft", "Microsoft"),
            ORACLE("oracle", "Oracle"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/internal/zstd/zstd_test.go

    	}
    
    	compressed := zstdBigData(t)
    	input := bytes.NewReader(compressed)
    	r := NewReader(input)
    	c := testing.AllocsPerRun(10, func() {
    		input.Reset(compressed)
    		r.Reset(input)
    		io.Copy(io.Discard, r)
    	})
    	if c != 0 {
    		t.Errorf("got %v allocs, want 0", c)
    	}
    }
    
    func TestFileSamples(t *testing.T) {
    	samples, err := os.ReadDir("testdata")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/net/http/responsecontroller_test.go

    		errc <- err
    	}))
    
    	res, err := cst.c.Get(cst.ts.URL)
    	close(startwritec)
    	if err != nil {
    		t.Fatalf("unexpected connection error: %v", err)
    	}
    	defer res.Body.Close()
    	_, err = io.Copy(io.Discard, res.Body)
    	if err == nil {
    		t.Errorf("client reading from truncated request body: got nil error, want non-nil")
    	}
    	err = <-errc // io.Copy error
    	if !errors.Is(err, os.ErrDeadlineExceeded) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

            op, {move_input_op_0.getOperand(0), move_input_op_0.getOperand(1)});
        return mlir::success();
      }
    };
    
    // Register rewrite pattern as "canonicalization" patterns on the MoveDhtToTftOp
    // so that they can be picked up by the Canonicalization framework.
    void mlir::tfd::ConvertTftToDhtOp::getCanonicalizationPatterns(
        RewritePatternSet& results, MLIRContext* context) {
      results.add<SimplifyDoubleConversion>(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/lang/tr.js

    girdiniz",badBrazilCEPAnswer:"Geçersiz Brezilya posta kodu girdiniz",badBrazilCPFAnswer:"Geçersiz Brezilya mükellef kayıt kimliği girdiniz",badPlPesel:"Geçersiz Polonya kişisel kimlik numarası girdiniz",badPlNip:"Geçersiz DKV girdiniz",badPlRegon:"Geçersiz Polonya ticari kimlik numarası girdiniz",badreCaptcha:"Lütfen bot olmadığınızı doğrulayın",passwordComplexityStart:"Şifreniz en az ",passwordComplexitySeparator:", ",passwordComplexityUppercaseInfo:" büyük harf",passwordComplexityLowercaseInfo:" küçük harf",pas...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/ConnectionSetTest.groovy

            then:
            messages.size() == 2
            messages[0] instanceof RejectedMessage
            messages[0].payload == "payload"
            messages[1] instanceof EndOfStream
         }
    
        def "does not discard queued outgoing messages when stop requested until all connections finished"() {
            def channel = new ChannelIdentifier("channel")
            def message = new ChannelMessage(channel, "payload")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

        /**
         * Compute if the value of a given expression is possibly used. Or,
         * conversely, compute whether the value of an expression is *not* safe to
         * discard.
         *
         * E.g. `x` in the following examples *are* used (`x.isUsedAsExpression() == true`)
         *   - `if (x) { ... } else { ... }`
         *   - `val a = x`
         *   - `x + 8`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_timeout_stdin.txt

    -- main_test.go --
    package main
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"os/exec"
    	"testing"
    	"time"
    )
    
    func TestMain(m *testing.M) {
    	if os.Getenv("TEST_TIMEOUT_HANG") == "1" {
    		io.Copy(io.Discard, os.Stdin)
    		if _, err := os.Stderr.WriteString("stdin closed\n"); err != nil {
    			os.Exit(1)
    		}
    
    		ticker := time.NewTicker(100 * time.Millisecond)
    		for t := range ticker.C {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:23:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/strings/reader_test.go

    		}
    	}
    }
    
    // tests that Len is affected by reads, but Size is not.
    func TestReaderLenSize(t *testing.T) {
    	r := strings.NewReader("abc")
    	io.CopyN(io.Discard, r, 1)
    	if r.Len() != 2 {
    		t.Errorf("Len = %d; want 2", r.Len())
    	}
    	if r.Size() != 3 {
    		t.Errorf("Size = %d; want 3", r.Size())
    	}
    }
    
    func TestReaderReset(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  10. docs/features/events.md

    System.out.println("REQUEST 1 (new connection)");
    try (Response response = client.newCall(request).execute()) {
      // Consume and discard the response body.
      response.body().source().readByteString();
    }
    
    System.out.println("REQUEST 2 (pooled connection)");
    try (Response response = client.newCall(request).execute()) {
      // Consume and discard the response body.
      response.body().source().readByteString();
    }
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top