Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for testZip (0.1 sec)

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

    # Plugins are not supported on all platforms.
    [!buildmode:plugin] skip
    
    go build -n testdep
    ! go build -buildmode=plugin testdep
    stderr '-buildmode=plugin requires exactly one main package'
    
    -- go.mod --
    module testdep
    
    go 1.16
    -- testdep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 12 15:28:43 UTC 2020
    - 255 bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/build.gradle.kts

        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
        testImplementation(projectTests(":plugins:fir-plugin-prototype"))
        testImplementation(projectTests(":compiler:tests-common-new"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_import_error_stack.txt

    env GO111MODULE=off
    ! go test testdep/p1
    stderr 'package testdep/p1 \(test\)\n\timports testdep/p2\n\timports testdep/p3: build constraints exclude all Go files ' # check for full import stack
    ! go vet testdep/p1
    stderr 'package testdep/p1 \(test\)\n\timports testdep/p2\n\timports testdep/p3: build constraints exclude all Go files ' # check for full import stack
    
    env GO111MODULE=on
    cd testdep
    ! go test testdep/p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 997 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        // Test compat address.
        testIp = (Inet6Address) InetAddresses.forString("::1.2.3.4");
        assertTrue(InetAddresses.hasEmbeddedIPv4ClientAddress(testIp));
        InetAddress ipv4 = InetAddresses.forString("1.2.3.4");
        assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp));
    
        // Test 6to4 address.
        testIp = (Inet6Address) InetAddresses.forString("2002:0102:0304::1");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

            }
            if (isSet(mode, 01)) {
                result.add(OTHERS_EXECUTE);
            }
            return result;
        }
    
        private static boolean isSet(int mode, int testbit) {
            return (mode & testbit) == testbit;
        }
    
        public static int convertToInt(Set<PosixFilePermission> permissions) {
            int result = 0;
            if (permissions.contains(OWNER_READ)) {
                result = result | 0400;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/build.gradle.kts

        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
        testImplementation(projectTests(":compiler:tests-common-new"))
        testImplementation(projectTests(":analysis:analysis-api-impl-barebone"))
        testImplementation(projectTests(":analysis:analysis-api-impl-base"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/build.gradle.kts

        testImplementation(project(":analysis:analysis-api-standalone:analysis-api-standalone-base"))
        testImplementation(projectTests(":compiler:tests-common"))
        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
        testImplementation(projectTests(":compiler:tests-common-new"))
        testImplementation(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/tac-filter.mlir

    // expected-remark@below {{Tac filter (1) specified but not applied to any op}}
    // expected-remark@below {{Tac filter (2): filter type: op filter, filter_pattern: "^test_op"}}
    // expected-remark@below {{Tac filter (2) specified but not applied to any op}}
    module {
      // CHECK-LABEL: testFunctionSkiped
      // expected-remark@+1 {{filtered by tac filter (0)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 01:08:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/resources/org/gradle/api/tasks/ide/eclipse/expectedClasspathFile.txt

      <classpathentry kind="src" path="src/main/resources"/>
      <classpathentry kind="output" path="bin"/>
      <classpathentry kind="src" path="src/test/java" output="testbin"/>
      <classpathentry kind="src" path="src/test/resources" output="testbin"/>
      <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
      <classpathentry kind="src" path="/test" combineaccessrules="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 05 04:16:54 UTC 2011
    - 607 bytes
    - Viewed (0)
  10. src/runtime/softfloat64_test.go

    			}
    			testu(t, "to32", trunc32, to32sw, h)
    			testu(t, "to64", trunc32, to64sw, h)
    			testu(t, "toint64", hwint64, toint64sw, h)
    			testu(t, "fromint64", hwint64, fromint64sw, h)
    			testcmp(t, f, h)
    			testcmp(t, h, f)
    			testcmp(t, g, h)
    			testcmp(t, h, g)
    		}
    	}
    }
    
    func testu(t *testing.T, op string, hw, sw func(float64) float64, v float64) {
    	h := hw(v)
    	s := sw(v)
    	if !same(h, s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top