Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for objectFile (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/copy-part-range_test.go

    		{"bytes=2-9", 2, 9},
    		{"bytes=2-2", 2, 2},
    		{"bytes=0000-0006", 0, 6},
    	}
    	objectSize := int64(10)
    
    	for _, successCase := range successCases {
    		rs, err := parseCopyPartRangeSpec(successCase.rangeString)
    		if err != nil {
    			t.Fatalf("expected: <nil>, got: %s", err)
    		}
    
    		start, length, err1 := rs.GetOffsetLength(objectSize)
    		if err1 != nil {
    			t.Fatalf("expected: <nil>, got: %s", err1)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/objectivec/plugins/ObjectiveCPlugin.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 ObjectiveCLangPlugin} for core Objective-C support and the {@link org.gradle.nativeplatform.plugins.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)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/LinkerSpec.java

    /**
     * A high level interface to the linker, specifying what is to be linked and how.
     */
    public interface LinkerSpec extends BinaryToolSpec {
    
        List<File> getObjectFiles();
    
        void objectFiles(Iterable<File> objectFiles);
    
        List<File> getLibraries();
    
        void libraries(Iterable<File> libraries);
    
        List<File> getLibraryPath();
    
        void libraryPath(File... libraryPath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProviderTest.groovy

            ToolType.CPP_COMPILER          | ['-x', 'c++']
            ToolType.C_COMPILER            | ['-x', 'c']
            ToolType.OBJECTIVEC_COMPILER   | ['-x', 'objective-c']
            ToolType.OBJECTIVECPP_COMPILER | ['-x', 'objective-c++']
            ToolType.ASSEMBLER             | []
        }
    
        def "gets compiler metadata from the provider for #toolType.toolName"() {
            when:
    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/resources/META-INF/gradle-plugins/org.gradle.objective-c.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 76 bytes
    - Viewed (0)
Back to top