Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for dotdot (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

            } else {
                executable = "${workingDir}/${executable}"
            }
            builder.environment("JAVA_HOME", System.getProperty("java.home"))
            // // https://github.com/gradle/dotcom/issues/6071
            builder.environment("JAVA_OPTS", "")
            return builder.build()
        }
    
        ExecResult run() {
            return build().start().waitForFinish()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substitutorProvider/AbstractCreateInheritanceTypeSubstitutorTest.kt

    import org.jetbrains.kotlin.types.Variance
    import kotlin.collections.single
    
    abstract class AbstractCreateInheritanceTypeSubstitutorTest : AbstractAnalysisApiBasedTest() {
        override fun doTest(testServices: TestServices) {
            val baseClass = testServices.expressionMarkerProvider
                .getElementsOfTypeAtCarets<KtClassOrObject>(testServices, "base")
                .single().first
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    
    abstract class AbstractMultiModuleSymbolByPsiTest : AbstractAnalysisApiBasedTest() {
        override fun doTest(testServices: TestServices) {
            val files = testServices.ktTestModuleStructure.allMainKtFiles
            val debugRenderer = DebugSymbolRenderer()
    
            val debugPrinter = PrettyPrinter()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolRestoreFromDifferentModuleTest.kt

    abstract class AbstractSymbolRestoreFromDifferentModuleTest : AbstractAnalysisApiBasedTest() {
        private val defaultRenderer = KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES
    
        override fun doTest(testServices: TestServices) {
            val declaration =
                testServices.expressionMarkerProvider.getElementsOfTypeAtCarets<KtDeclaration>(testServices).single().first
    
            val restoreAt =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

    /**
     * Reads through the declarations provided in the .klib and renders their `klibSourceFile`
     */
    abstract class AbstractGetKlibSourceFileNameTest : AbstractAnalysisApiBasedTest() {
        override fun doTest(testServices: TestServices) {
            val mainModule = testServices.ktTestModuleStructure.mainModules
                .let { modules -> if (modules.size == 1) modules.first() else fail("Expected single main module. Found $modules") }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/tflite_legalize_hlo.cc

      // Converted MHLO ops should be marked illegal here.
      // TODO: b/304003568 - Add TF_TransposeOp folding logic to tflite.
      target.addIllegalOp<mhlo::DotGeneralOp, mhlo::DotOp, mhlo::TransposeOp>();
      if (failed(applyPartialConversion(getOperation(), target,
                                        std::move(patterns)))) {
        getOperation().emitError("mhlo to TFLite legalization failed.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

         * check (see [checkSessionsMarkedInvalid]) and should be skipped.
         */
        protected open fun shouldSkipValidityCheck(session: SESSION): Boolean = false
    
        override fun doTest(testServices: TestServices) {
            val ktModules = testServices.ktTestModuleStructure.mainModules.map { it.ktModule }
    
            val sessionsBeforeModification = getSessions(ktModules)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/util/filesystem/util_windows.go

    }
    
    // IsAbs returns whether the given path is absolute or not.
    // On Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    // though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    //
    // WARN: It isn't safe to use this for API values which will propagate across systems (e.g. REST API values
    // that get validated on Unix, persisted, then consumed by Windows, etc).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/internal/filepathlite/path_windows.go

    		return false
    	}
    	return IsPathSeparator(path[0])
    }
    
    // volumeNameLen returns length of the leading volume name on Windows.
    // It returns 0 elsewhere.
    //
    // See:
    // https://learn.microsoft.com/en-us/dotnet/standard/io/file-path-formats
    // https://googleprojectzero.blogspot.com/2016/02/the-definitive-guide-on-win32-to-nt.html
    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/html/template/error.go

    	ErrRangeLoopReentry
    
    	// ErrSlashAmbig: '/' could start a division or regexp.
    	// Example:
    	//   <script>
    	//     {{if .C}}var x = 1{{end}}
    	//     /-{{.N}}/i.test(x) ? doThis : doThat();
    	//   </script>
    	// Discussion:
    	//   The example above could produce `var x = 1/-2/i.test(s)...`
    	//   in which the first '/' is a mathematical division operator or it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top