Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for objectFile (0.19 sec)

  1. tensorflow/compiler/aot/embedded_protocol_buffers.cc

      llvm::legacy::PassManager codegen_passes;
    
      if (target_machine->addPassesToEmitFile(codegen_passes, ostream, nullptr,
                                              llvm::CodeGenFileType::ObjectFile)) {
        return xla::Internal(
            "Could not create pass pipeline to generate object file");
      }
    
      codegen_passes.run(*module);
    
      return string(stream_buffer.begin(), stream_buffer.end());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:48:41 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if len(funcs) > 0 {
    		funcs[len(funcs)-1].end += expand
    	}
    
    	return funcs
    }
    
    // objectFile return the object for the specified mapping, opening it if necessary.
    // It returns nil on error.
    func (sp *sourcePrinter) objectFile(m *profile.Mapping) plugin.ObjFile {
    	if m == nil {
    		return nil
    	}
    	if object, ok := sp.objects[m.File]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            public LinkerOptionsFixture linkerOptionsFor(Object path) {
                return new LinkerOptionsFixture(new TestFile(path.toString()));
            }
    
            public TestFile objectFile(Object path) {
                return new TestFile(path.toString() + objectFileNameSuffix);
            }
    
            public SharedLibraryFixture sharedLibrary(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  4. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            debugBinary.variantName == 'debug'
            debugBinary.baseName == 'app'
            debugBinary.compilationDetails.sources.sourceFile as Set == [src1, src2] as Set
            debugBinary.compilationDetails.sources.objectFile.each { assert it != null }
            debugBinary.compilationDetails.headerDirs == [headerDir] as Set
            debugBinary.compilationDetails.frameworkSearchPaths.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultLinkerSpec.java

            addAll(this.objectFiles, objectFiles);
        }
    
        @Override
        public List<File> getLibraries() {
            return libraries;
        }
    
        @Override
        public void libraries(Iterable<File> libraries) {
            addAll(this.libraries, libraries);
        }
    
        @Override
        public List<File> getLibraryPath() {
            return libraryPath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. cmd/speedtest.go

    			result.GETStats.ObjectsPerSec = throughputHighestGet / uint64(opts.objectSize) / uint64(durationSecs)
    			result.PUTStats.ThroughputPerSec = throughputHighestPut / uint64(durationSecs)
    			result.PUTStats.ObjectsPerSec = throughputHighestPut / uint64(opts.objectSize) / uint64(durationSecs)
    			var totalUploadTimes madmin.TimeDurations
    			var totalDownloadTimes madmin.TimeDurations
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. cmd/warm-backend-minio.go

    //
    //	maxPartsCount - 10000
    //	maxMultipartPutObjectSize - 5TiB
    func optimalPartSize(objectSize int64) (partSize int64, err error) {
    	// object size is '-1' set it to 5TiB.
    	if objectSize == -1 {
    		objectSize = maxMultipartPutObjectSize
    	}
    
    	// object size is larger than supported maximum.
    	if objectSize > maxMultipartPutObjectSize {
    		err = errors.New("entity too large")
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/ObjectiveCppSourceSet.java

    import org.gradle.language.base.LanguageSourceSet;
    
    /**
     * A set of Objective-C++ source files.
     *
     * <p>An Objective-C++ source set contains a set of source files, together with an optional set of exported header files.</p>
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'objective-cpp'
     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

        /**
         * The configuration of the Objective-C compiler used when compiling Objective-C sources for this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
         * {@link NativeExecutableBinarySpec} when the 'objective-c' plugin is applied.
         */
        PreprocessingTool getObjcCompiler();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/plugins/ObjectiveCppPlugin.java

    import org.gradle.api.Project;
    import org.gradle.nativeplatform.plugins.NativeComponentPlugin;
    
    /**
     * A plugin for projects wishing to build native binary components from Objective-C++ sources.
     *
     * <p>Automatically includes the {@link ObjectiveCppLangPlugin} for core Objective-C++ support and the {@link NativeComponentPlugin} for native component support.</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top