Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for testZip (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

            def testDir = tmpDirProvider.testDirectory
            def objectFileDir = testDir.file("output/objects")
            def sourceFiles = [testDir.file("source1.ext"), testDir.file("source2.ext")]
    
            when:
            def compileSpec = Stub(getCompileSpecType()) {
                getTempDir() >> testDir
                getObjectFileDir() >> objectFileDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileCollectionSpec.groovy

            TestFile testDir = this.testDir.getTestDirectory()
            TestFile file1 = testDir.file("f1").createFile()
            TestFile dir1 = testDir.file("dir1").createDir()
            TestFile file2 = dir1.file("f2").createFile()
            TestFile missing = testDir.file("f3")
            testDir.file("f2").createFile()
            testDir.file("ignored1").createFile()
            dir1.file("f1").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
            final expectedArgs = [
                    "-sys1", "-sys2",
                    "-emit-library",
                    "-o", outputFile.absolutePath,
                    testDir.file("one.o").absolutePath,
                    testDir.file("two.o").absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top