Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for oasys2 (0.12 sec)

  1. 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)
  2. 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)
  3. src/syscall/syscall_plan9_test.go

    import (
    	"syscall"
    	"testing"
    )
    
    // testalias checks for aliasing of error strings returned by sys1 and sys2,
    // which both call the function named fn in package syscall
    func testalias(t *testing.T, fn string, sys1, sys2 func() error) {
    	err := sys1().Error()
    	errcopy := string([]byte(err))
    	sys2()
    	if err != errcopy {
    		t.Errorf("syscall.%s error string changed from %q to %q\n", fn, errcopy, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 14:57:01 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top