Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for getSrcT (0.39 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/FileArchOnlyBinaryInfo.groovy

        final File binaryFile
    
        FileArchOnlyBinaryInfo(File file) {
            this.binaryFile = Preconditions.checkNotNull(file)
        }
    
        @Override
        ArchitectureInternal getArch() {
            def process = ['file', binaryFile.absolutePath].execute()
            return readArch(process.inputStream.readLines())
        }
    
        @Override
        List<String> listObjectFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

        OtoolBinaryInfo(File binaryFile, List<String> environments) {
            this.binaryFile = binaryFile
            this.environments = environments
        }
    
        ArchitectureInternal getArch() {
            def process = ['otool', '-hv', binaryFile.absolutePath].execute(environments, null)
            def lines = process.inputStream.readLines()
            def archString = lines.last().split()[1]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	type key struct {
    		line    profile.Line
    		inlined bool
    	}
    	srcs := map[key]int{} // Sources identified so far.
    	seenFunctions := map[string]bool{}
    	unknownIndex := 1
    	getSrc := func(line profile.Line, inlined bool) int {
    		k := key{line, inlined}
    		if i, ok := srcs[k]; ok {
    			return i
    		}
    		x := StackSource{Places: []StackSlot{}} // Ensure Places is non-nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                org.apache.maven.api.model.ActivationOS modelOs = modelActivation.getOs();
    
                if (modelOs != null) {
                    ActivationOS os = ActivationOS.newBuilder()
                            .arch(modelOs.getArch())
                            .family(modelOs.getFamily())
                            .name(modelOs.getName())
                            .version(modelOs.getVersion())
                            .build();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

                if (profileOs != null) {
                    org.apache.maven.model.ActivationOS os = new org.apache.maven.model.ActivationOS();
    
                    os.setArch(profileOs.getArch());
                    os.setFamily(profileOs.getFamily());
                    os.setName(profileOs.getName());
                    os.setVersion(profileOs.getVersion());
    
                    activation.setOs(os);
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

        def static readArch(def input) {
            def pattern = /(?m)^.* machine \((.*)\).*$/
            return (input =~ pattern).findResult { line, group ->
                group.trim()
            }
        }
    
        ArchitectureInternal getArch() {
            def archString = readArch(dumpbinHeaders)
            switch (archString) {
                case "x86":
                    return Architectures.forInput("x86")
                case "x64":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

        }
    
        static boolean canUseReadelf() {
            def process = ['readelf', '-v'].execute()
            return process.waitFor() && process.exitValue() == 0
        }
    
        ArchitectureInternal getArch() {
            def process = ['readelf', '-h', binaryFile.absolutePath].execute()
            List<String> lines = process.inputStream.readLines()
            return readArch(lines)
        }
    
        List<String> listObjectFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	return file_pkg_apis_istio_v1alpha1_values_types_proto_rawDescGZIP(), []int{13}
    }
    
    // Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    func (x *GlobalConfig) GetArch() *ArchConfig {
    	if x != nil {
    		return x.Arch
    	}
    	return nil
    }
    
    func (x *GlobalConfig) GetCertSigners() []string {
    	if x != nil {
    		return x.CertSigners
    	}
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top