Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for oasys2 (0.17 sec)

  1. 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)
  2. 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)
  3. android/guava/src/com/google/common/net/MediaType.java

          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.graphics");
      public static final MediaType OPENDOCUMENT_PRESENTATION =
          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.presentation");
      public static final MediaType OPENDOCUMENT_SPREADSHEET =
          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.spreadsheet");
      public static final MediaType OPENDOCUMENT_TEXT =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/select.go

    			fn := chanfn("selectnbrecv", 2, ch.Type())
    			call := mkcall1(fn, fn.Type().ResultsTuple(), r.PtrInit(), elem, ch)
    			as := ir.NewAssignListStmt(r.Pos(), ir.OAS2, []ir.Node{cond, n.Lhs[1]}, []ir.Node{call})
    			r.PtrInit().Append(typecheck.Stmt(as))
    		}
    
    		r.Cond = typecheck.Expr(cond)
    		r.Body = cas.Body
    		r.Else = append(dflt.Init(), dflt.Body...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.graphics");
      public static final MediaType OPENDOCUMENT_PRESENTATION =
          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.presentation");
      public static final MediaType OPENDOCUMENT_SPREADSHEET =
          createConstant(APPLICATION_TYPE, "vnd.oasis.opendocument.spreadsheet");
      public static final MediaType OPENDOCUMENT_TEXT =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    	ASWPALB
    	ASWPALD
    	ASWPALH
    	ASWPALW
    	ASWPAW
    	ASWPB
    	ASWPD
    	ASWPH
    	ASWPLB
    	ASWPLD
    	ASWPLH
    	ASWPLW
    	ASWPW
    	ASXTB
    	ASXTBW
    	ASXTH
    	ASXTHW
    	ASXTW
    	ASYS
    	ASYSL
    	ATBNZ
    	ATBZ
    	ATLBI
    	ATST
    	ATSTW
    	AUBFIZ
    	AUBFIZW
    	AUBFM
    	AUBFMW
    	AUBFX
    	AUBFXW
    	AUCVTFD
    	AUCVTFS
    	AUCVTFWD
    	AUCVTFWS
    	AUDIV
    	AUDIVW
    	AUMADDL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    ====
    
    https://github.com/checkstyle/contribution/tree/master/xsl[View a sample Checkstyle stylesheet.]
    
    [[sec:enable_checkstyle_sarif]]
    == Generate SARIF report
    
    link:https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html[SARIF] report is supported on Checkstyle versions 10.3.3 and newer. It is not enabled by default.
    
    .Enable SARIF Report
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        static {
            throw new NoClassDefFoundError()
        }
    
        @Test public void pass() {}
    }
    
    public class ATestClassWithSeveralMethods {
        @Test public void pass() {}
        @Test public void pass2() {}
        @Test public void passSlowly() {}
        @Test public void passSlowly2() {}
        @Test public void fail() { throw new RuntimeException("Boo!") }
    }
    public class ATestClassWithSlowMethods {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/range.go

    func rangeAssign2(n *ir.RangeStmt, key, value ir.Node) ir.Node {
    	// Use OAS2 to correctly handle assignments
    	// of the form "v1, a[v1] = range".
    	key = rangeConvert(n, n.Key.Type(), key, n.KeyTypeWord, n.KeySrcRType)
    	value = rangeConvert(n, n.Value.Type(), value, n.ValueTypeWord, n.ValueSrcRType)
    	return ir.NewAssignListStmt(n.Pos(), ir.OAS2, []ir.Node{n.Key, n.Value}, []ir.Node{key, value})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    application/vnd.ms-powerpoint=powerpoint\n\
    application/vnd.openxmlformats-officedocument.presentationml.presentation=powerpoint\n\
    application/vnd.oasis.opendocument.text=odt\n\
    application/vnd.oasis.opendocument.spreadsheet=ods\n\
    application/vnd.oasis.opendocument.presentation=odp\n\
    application/pdf=pdf\n\
    application/x-fictionbook+xml=fb2\n\
    application/e-pub+zip=epub\n\
    application/x-ibooks+zip=ibooks\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top