Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for test_ir (0.13 sec)

  1. src/syscall/exec_plan9.go

    		return 0, err
    	}
    	argvp, err := SlicePtrFromStrings(argv)
    	if err != nil {
    		return 0, err
    	}
    
    	destDir := attr.Dir
    	if destDir == "" {
    		wdmu.Lock()
    		destDir = wdStr
    		wdmu.Unlock()
    	}
    	var dir *byte
    	if destDir != "" {
    		dir, err = BytePtrFromString(destDir)
    		if err != nil {
    			return 0, err
    		}
    	}
    	var envvParsed []envItem
    	if attr.Env != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

        }
    
        def "executes tests in correct environment"() {
            given:
            buildFile << """
                test {
                    systemProperties.testSysProperty = 'value'
                    systemProperties.testDir = projectDir
                    environment.TEST_ENV_VAR = 'value'
                }
            """.stripIndent()
            file('src/test/java/org/gradle/OkTest.java') << """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

            sleep 10
          fi
        done
    
        if [[ -f "${temp_local_path}" ]]; then
          unzip "${temp_local_path}" -d "${dest_dir}" > /dev/null
          rm -f "${temp_local_path}"
        fi
    }
    
    # Saves log files from SSH
    function save-windows-logs-via-ssh() {
        local node="${1}"
        local dest_dir="${2}"
    
        export-windows-docker-event-log "${node}"
        export-windows-docker-images-list "${node}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            def project = rootXcodeProject.projectFile
            project.targets.size() == 2
    
            project.targets[0].name == 'Test_lib'
            project.targets[0].productReference.path == sharedLib("output/lib/main/debug/test_lib").absolutePath
            project.targets[0].buildConfigurationList.buildConfigurations.name == [DefaultXcodeProject.BUILD_DEBUG, DefaultXcodeProject.BUILD_RELEASE]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            !scope.defines(exportLoader.loadClass(TestClass2.name))
        }
    
        void copyTo(Class<?> clazz, TestFile destDir) {
            def fileName = clazz.name.replace('.', '/') + ".class"
            def dest = destDir.file(fileName)
            def classFile = clazz.classLoader.getResource(fileName)
            dest.copyFrom(classFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. docs/debugging/xl-meta/main.go

    Multiple files can be added. Files ending in '.zip' will be searched
    for 'xl.meta' files. Wildcards are accepted: 'testdir/*.txt' will compress
    all files in testdir ending with '.txt', directories can be wildcards
    as well. 'testdir/*/*.txt' will match 'testdir/subdir/b.txt', double stars
    means full recursive. 'testdir/**/xl.meta' will search for all xl.meta
    recursively.
    
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}
    `
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/flag/flag_test.go

    	visitor := func(f *Flag) {
    		if len(f.Name) > 5 && f.Name[0:5] == "test_" {
    			g, ok := f.Value.(Getter)
    			if !ok {
    				t.Errorf("Visit: value does not satisfy Getter: %T", f.Value)
    				return
    			}
    			switch f.Name {
    			case "test_bool":
    				ok = g.Get() == true
    			case "test_int":
    				ok = g.Get() == int(1)
    			case "test_int64":
    				ok = g.Get() == int64(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorBuilder.java

        private String getClassifierForType(String type) {
            if(JarDependencyType.TEST_JAR.getName().equals(type)) {
                return "tests";
            } else if(JarDependencyType.EJB_CLIENT.getName().equals(type)) {
                return "client";
            }
            return null;
        }
    
        private enum JarDependencyType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // in this file reduce.  Don't use this in your code.
    
    #define GTEST_ASSERT_(expression, on_failure) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (const ::testing::AssertionResult gtest_ar = (expression)) \
        ; \
      else \
        on_failure(gtest_ar.failure_message())
    
    
    // Helper function for implementing {EXPECT|ASSERT}_PRED1.  Don't use
    // this in your code.
    template <typename Pred,
              typename T1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

            getMainSpec().with(sourceSpecs);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public AbstractCopyTask into(Object destDir) {
            getRootSpec().into(destDir);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public AbstractCopyTask into(Object destPath, Closure configureClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top