Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for 001s (0.03 sec)

  1. src/cmd/go/testdata/script/vet_asm.txt

    stderr '"a": {'
    stderr   '"asmdecl":'
    stderr     '"posn": ".*asm.s:2:1",'
    stderr     '"message": ".*invalid MOVW.*"'
    
    -- a/a.go --
    package a
    
    func f(x int8)
    
    -- a/asm.s --
    TEXT ·f(SB),0,$0-1
    	MOVW	x+0(FP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 590 bytes
    - Viewed (0)
  2. src/image/testdata/video-001.q50.420.progressive.jpeg

    video-001.q50.420.progressive.jpeg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3.2K bytes
    - Viewed (0)
  3. cmd/httprange_test.go

    import (
    	"testing"
    )
    
    func TestHTTPRequestRangeSpec(t *testing.T) {
    	resourceSize := int64(10)
    	validRangeSpecs := []struct {
    		spec                 string
    		expOffset, expLength int64
    	}{
    		{"bytes=0-", 0, 10},
    		{"bytes=1-", 1, 9},
    		{"bytes=0-9", 0, 10},
    		{"bytes=1-10", 1, 9},
    		{"bytes=1-1", 1, 1},
    		{"bytes=2-5", 2, 4},
    		{"bytes=-5", 5, 5},
    		{"bytes=-1", 9, 1},
    		{"bytes=-1000", 0, 10},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 05 16:56:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

        }
    
        @Test
        void testInitialDelimiters() {
            assertOrder(X_EQ_Y, "0.1", ".1");
            assertOrder(X_EQ_Y, "0.0.1", "..1");
            assertOrder(X_EQ_Y, "0.1", "-1");
            assertOrder(X_EQ_Y, "0.0.1", "--1");
        }
    
        @Test
        void testConsecutiveDelimiters() {
            assertOrder(X_EQ_Y, "1.0.1", "1..1");
            assertOrder(X_EQ_Y, "1.0.0.1", "1...1");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	case AFMOVD:
    		return FPOP1S(0, 0, 1, 0)
    
    	case AFABSD:
    		return FPOP1S(0, 0, 1, 1)
    
    	case AFNEGD:
    		return FPOP1S(0, 0, 1, 2)
    
    	case AFSQRTD:
    		return FPOP1S(0, 0, 1, 3)
    
    	case AFCVTDS:
    		return FPOP1S(0, 0, 1, 4)
    
    	case AFCVTDH:
    		return FPOP1S(0, 0, 1, 7)
    
    	case AFRINTND:
    		return FPOP1S(0, 0, 1, 8)
    
    	case AFRINTPD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_metadata/test_tutorial001.py

                },
                "license": {
                    "name": "Apache 2.0",
                    "url": "https://www.apache.org/licenses/LICENSE-2.0.html",
                },
                "version": "0.0.1",
            },
            "paths": {
                "/items/": {
                    "get": {
                        "summary": "Read Items",
                        "operationId": "read_items_items__get",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/image/draw/draw_test.go

    func TestNonZeroSrcPt(t *testing.T) {
    	a := image.NewRGBA(image.Rect(0, 0, 1, 1))
    	b := image.NewRGBA(image.Rect(0, 0, 2, 2))
    	b.Set(0, 0, color.RGBA{0, 0, 0, 5})
    	b.Set(1, 0, color.RGBA{0, 0, 5, 5})
    	b.Set(0, 1, color.RGBA{0, 5, 0, 5})
    	b.Set(1, 1, color.RGBA{5, 0, 0, 5})
    	Draw(a, image.Rect(0, 0, 1, 1), b, image.Pt(1, 1), Over)
    	if !eq(color.RGBA{5, 0, 0, 5}, a.At(0, 0)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/raw-model/missing-ga-pluginManagement.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>testinvalidpom</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId></groupId>
              <artifactId/>
            </plugin>
          </plugins>
        </pluginManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/validation/raw-model/missing-plugin-version-pluginManagement.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>testinvalidpom</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>the.group.id</groupId>
              <artifactId>the.artifact</artifactId>
              <version/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_per_channel.mlir

        %2 = stablehlo.convolution(%1, %0)
          dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f],
          window = {
            stride = [1, 1], pad = [[0, 0], [1, 1]],
            lhs_dilate = [1, 1],
            rhs_dilate = [1, 1]
          }
          {
            batch_group_count = 1 : i64,
            feature_group_count = 1 : i64
          } : (tensor<1x3x2x3xf32>, tensor<2x3x3x2xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 07:48:15 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top