Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,359 for Executable (0.18 sec)

  1. src/os/exec_windows_test.go

    			t.Fatal(err)
    		}
    		if err := w.Sync(); err != nil {
    			w.Close()
    			t.Fatal(err)
    		}
    		if err = w.Close(); err != nil {
    			t.Fatal(err)
    		}
    	}
    	// Then run each executable and remove its directory.
    	// Run each executable in a separate goroutine to add some load
    	// and increase the chance of triggering the bug.
    	var wg sync.WaitGroup
    	wg.Add(n)
    	for i := 0; i < n; i++ {
    		go func(i int) {
    			defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 15:13:24 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/app").assertExists()
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
            installation("build/install/main/debug").exec().out == app.withFeatureDisabled().expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use executable file as task dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultProcessForkOptionsTest.groovy

            given:
            def target = Mock(ProcessForkOptions)
    
            when:
            options.executable('executable')
            options.environment('key', 12)
            options.copyTo(target)
    
            then:
            1 * target.setWorkingDir(baseDir)
            1 * target.setExecutable('executable')
            1 * target.setEnvironment({ !it.empty })
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/main/assemblies/files/service.bat

    if errorlevel 1 goto x86
    set EXECUTABLE=%FESS_HOME%\bin\fess-service-x64.exe
    set SERVICE_ID=fess-service-x64
    set ARCH=64-bit
    goto checkExe
    
    :x86
    set EXECUTABLE=%FESS_HOME%\bin\fess-service-x86.exe
    set SERVICE_ID=fess-service-x86
    set ARCH=32-bit
    
    :checkExe
    if EXIST "%EXECUTABLE%" goto okExe
    echo fess-service-(x86|x64).exe was not found...
    
    :okExe
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            when:
            succeeds "mainExecutable"
    
            then:
            executable("build/exe/main/main").exec().out == app.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use map notation to reference library in different project"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatoryFactory.java

            return new GnupgSignatory(project, name, readSettings(project, propertyPrefix));
        }
    
        private GnupgSettings readSettings(Project project, String propertyPrefix) {
            Object executable = project.findProperty(buildQualifiedProperty(propertyPrefix, "executable"));
            Object useLegacyGpg = project.findProperty(buildQualifiedProperty(propertyPrefix, "useLegacyGpg"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

            executedAndNotSkipped(":mainExecutable")
            executable("build/exe/main/main").exec().out == helloWorldApp.frenchOutput
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "executable with build type depends on library with matching build type"() {
            when:
            helloWorldApp.executable.writeSources(file("src/main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can build executable from visual studio"() {
            useMsbuildTool()
            def debugBinary = executable("build/exe/main/win32/debug/main")
    
            given:
            app.writeSources(file("src/main"))
            buildFile << """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable that depends on a library in another project"() {
            when:
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/hello"))
    
            createDirs("exe", "lib")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

        @Override
        public void setExecutable(String executable) {
            javaExecSpec.setExecutable(executable);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setExecutable(Object executable) {
            javaExecSpec.setExecutable(executable);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public JavaExec executable(Object executable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top