Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for oasys2 (0.67 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/vnd.fujitsu.oasys">
        <glob pattern="*.oas"/>
      </mime-type>
      <mime-type type="application/vnd.fujitsu.oasys2">
        <glob pattern="*.oa2"/>
      </mime-type>
      <mime-type type="application/vnd.fujitsu.oasys3">
        <glob pattern="*.oa3"/>
      </mime-type>
      <mime-type type="application/vnd.fujitsu.oasysgp">
        <glob pattern="*.fg5"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependenciesTest.groovy

        def projectDep2 = Mock(ProjectDependencyInternal) { getIdentityPath() >> projectId2 }
        def tasks1 = Mock(TaskContainerInternal)
        def tasks2 = Mock(TaskContainerInternal)
        ProjectStateRegistry projectStateRegistry
    
        def setup() {
            _ * project1.tasks >> tasks1
            _ * project2.tasks >> tasks2
            _ * project1State.getMutableModel() >> project1
            _ * project2State.getMutableModel() >> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolvingBuildTaskSchedulerSpec.groovy

            _ * startParameters.taskRequests >> [request1, request2]
    
            def tasks1 = [task1, task2] as Set
            _ * selection1.tasks >> tasks1
    
            def tasks2 = [task3] as Set
            _ * selection2.tasks >> tasks2
    
            when:
            action.scheduleRequestedTasks(gradle, null, executionPlan)
    
            then:
            1 * parser.parseTasks(request1) >> [selection1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                }
            """
            file("src/test/java/Foo2Test.java") << """
                ${testFrameworkImports}
                public class Foo2Test {
                    @Test public void pass2() {}
                    @Test public void boo() {}
                }
            """
            file("src/test/java/Foo3Test.java") << """
                ${testFrameworkImports}
                public class Foo3Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

                        .assertStderr(not(containsString("out.")))
                        .assertStdout(allOf(containsString("out.fail"), containsString("out.fail2"), containsString("out.pass"), containsString("out.pass2")))
                        .assertStdout(not(containsString("err.")))
            } else {
                mixedMethods
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. ci/devinfra/docker_windows/Dockerfile

    # Install WiX toolset (v4) - Necessary for MSI Installer/Signing builds
    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
        Invoke-WebRequest "https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20220319.sfx.exe" \
            -OutFile msys2_install.exe -UseBasicParsing; \
        .\msys2_install.exe -y -oC:\; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/runlit.site.cfg.py

    config.mlir_test_dir = os.path.join(real_test_srcdir,
                                        os.environ['TEST_WORKSPACE'], test_dir)
    
    if platform.system() == 'Windows':
      # Configure this to work with msys2, TF's preferred windows bash.
      config.lit_tools_dir = '/usr/bin'
    
    lit.llvm.initialize(lit_config, config)
    
    # Let the main config do the real work.
    lit_config.load_config(
        config,
        os.path.join(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/stmt.go

    			base.Errorf("%v is not a top level statement", n.Sym())
    		} else {
    			base.Errorf("%v is not a top level statement", n.Op())
    		}
    		ir.Dump("nottop", n)
    		return n
    
    	case ir.OAS,
    		ir.OASOP,
    		ir.OAS2,
    		ir.OAS2DOTTYPE,
    		ir.OAS2RECV,
    		ir.OAS2FUNC,
    		ir.OAS2MAPR,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOPY,
    		ir.OCALLINTER,
    		ir.OCALL,
    		ir.OCALLFUNC,
    		ir.ODELETE,
    		ir.OSEND,
    		ir.OPRINT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
            final expectedArgs = [
                    "-sys1", "-sys2",
                    "-shared",
                    getSoNameProp("installName"),
                    "-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
    - 8.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

                    "-sys1", "-sys2",
                    "-emit-library",
                    "-o", outputFile.absolutePath,
                    testDir.file("one.o").absolutePath,
                    testDir.file("two.o").absolutePath,
                    "-arg1", "-arg2"].flatten()
    
            when:
            LinkerSpec spec = Mock(SharedLibraryLinkerSpec)
            spec.getSystemArgs() >> ['-sys1', '-sys2']
    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