Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for installDate (0.28 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

        }
    
        private String vsWhereManyVersions(File localRoot) {
            return """
                [
                  {
                    "instanceId": "daee671f",
                    "installDate": "2017-10-05T20:23:05Z",
                    "installationName": "VisualStudio/15.3.5+26730.16",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (2)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkSharedLibrary.java

            private String installName;
            private File importLibrary;
    
            @Override
            public String getInstallName() {
                return installName;
            }
    
            void setInstallName(String installName) {
                this.installName = installName;
            }
    
            @Override
            public File getImportLibrary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            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,
                    "-arg1", "-arg2"].flatten()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

                getJavaVersion() >> implementationVersion
            }
        }
    
        private static File getJavaHome(String implementationVersion = "1.1", boolean isJdk = false, String installPath = null) {
            return new File(installPath != null ? installPath : ("/" + (isJdk ? "jdk" : "jre") + "s/" + implementationVersion)).absoluteFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/SharedLibrarySoNameIntegrationTest.groovy

        it.installName = 'hello-install-name'
    }
    """
    
            when:
            succeeds "helloSharedLibrary"
    
            then:
            sharedLibrary("build/libs/hello/shared/hello").soName == "hello-install-name"
        }
    
        @ToBeFixedForConfigurationCache
        def "library soname defaults when installName is null"() {
            given:
            buildFile << """
    tasks.withType(LinkSharedLibrary) {
        it.installName = null
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

                String installName = spec.getInstallName();
                OperatingSystem targetOs = spec.getTargetPlatform().getOperatingSystem();
    
                if (installName == null || targetOs.isWindows()) {
                    return;
                }
                if (targetOs.isMacOsX()) {
                    args.add("-Wl,-install_name," + installName);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. operator/pkg/util/progress/progress.go

    package progress
    
    import (
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    	"sync"
    
    	"github.com/cheggaaa/pb/v3"
    
    	"istio.io/istio/operator/pkg/name"
    )
    
    type InstallState int
    
    const (
    	StateInstalling InstallState = iota
    	StatePruning
    	StateComplete
    	StateUninstallComplete
    )
    
    // Log records the progress of an installation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/os/exec/lp_windows_test.go

    		if err := dst.Close(); err != nil {
    			t.Fatal(err)
    		}
    	}()
    
    	_, err = io.Copy(dst, src)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    // installBat creates a batch file at dst that prints its own
    // path when run.
    func installBat(t *testing.T, dstPath string) {
    	dst, err := os.OpenFile(dstPath, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0o777)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. ci/devinfra/docker_windows/Dockerfile

            "--quiet", "--wait", "--nocache", \
            "--add", "Microsoft.VisualStudio.Workload.VCTools", \
            "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", \
            "--add", "Microsoft.VisualStudio.Component.Windows10SDK.19041" -Wait; \
        Start-Process -FilePath C:/TEMP/vs_buildtools.exe -ArgumentList "--installPath", "C:/VS", \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            spec.getSystemArgs() >> []
            spec.getArgs() >> []
            spec.getOutputFile() >> outputFile
            spec.getLibraries() >> []
            spec.getLibraryPath() >> []
            spec.getInstallName() >> "installName"
            spec.getTargetPlatform() >> platform
            spec.getObjectFiles() >> [testDir.file("one.o")]
            spec.getOperationLogger() >> operationLogger
    
            and:
            linker.execute(spec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top