Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 1024x1024 (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

        %1 = "tf.Identity"(%0#3)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ReadWriteTest.java

                try ( SmbPipeHandle p = f.openPipe() ) {
                    try ( OutputStream os = p.getOutput() ) {
                        writeRandom(1024, 1024, os);
                        try ( InputStream is = p.getInput() ) {
                            verifyRandom(1024, 1024, is);
                        }
                    }
                }
                catch ( SmbException e ) {
                    if ( e.getNtStatus() == 0xC00000BB ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    			MaxMutatingRequestsInFlight: 200,
    			RequestTimeout:              time.Duration(2) * time.Minute,
    			MinRequestTimeout:           1800,
    			JSONPatchMaxCopyBytes:       int64(3 * 1024 * 1024),
    			MaxRequestBodyBytes:         int64(3 * 1024 * 1024),
    		},
    		Admission: &kubeoptions.AdmissionOptions{
    			GenericAdmission: &apiserveroptions.AdmissionOptions{
    				RecommendedPluginOrder: s.Admission.GenericAdmission.RecommendedPluginOrder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    				MaxMutatingRequestsInFlight: 200,
    				RequestTimeout:              time.Duration(2) * time.Minute,
    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       int64(3 * 1024 * 1024),
    				MaxRequestBodyBytes:         int64(3 * 1024 * 1024),
    			},
    			Admission: &kubeoptions.AdmissionOptions{
    				GenericAdmission: &apiserveroptions.AdmissionOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    	if err != nil {
    		t.Errorf("unexpected error creating websocket executor: %v", err)
    	}
    	// Generate random data, and set it up to stream on STDIN. The data will be
    	// returned on the STDOUT buffer.
    	randomSize := 1024 * 1024
    	randomData := make([]byte, randomSize)
    	if _, err := rand.Read(randomData); err != nil {
    		t.Errorf("unexpected error reading random data: %v", err)
    	}
    	var stdout bytes.Buffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                    items.length, size, type, parseTime, indexTime, cpuLoad, maxMemory / (1024 * 1024),
                    (maxMemory - freeMemory) / (1024 * 1024));
            logger.info(msg);
            if (logger.isDebugEnabled()) {
                for (final SuggestItem item : items) {
                    logger.debug("[{}] {}", type, item.toJsonString());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    			error: "max depth",
    			data:  []byte(strings.Repeat(`[`, 3*1024*1024)),
    		},
    		{
    			name:  "deeply nested maps",
    			error: "max depth",
    			data:  []byte("x: " + strings.Repeat(`{`, 3*1024*1024)),
    		},
    		{
    			name:  "deeply nested indents",
    			error: "max depth",
    			data:  []byte(strings.Repeat(`- `, 3*1024*1024)),
    		},
    		{
    			name:      "3MB of 1000-indent lines",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        abstract boolean existsBuildCacheEntry(String key);
        abstract AbstractIntegrationSpec withEnabledBuildCache();
    
        def setup() {
            def bytes = new byte[1024 * 1024]
            new Random().nextBytes(bytes)
            file("output.txt").bytes = bytes
    
            buildFile << """
                @CacheableTask
                abstract class CustomTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
    
                class MyTask extends DefaultTask {
                    static final byte[][] MEMORY_HOG = new byte[1024][1024 * $memoryHogMb]
                    @TaskAction void runAction0() {}
                }
                """
            )
            val settingsFile = cachedSettingsFile(withSettings(""), false, false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            def size = getZip().size()
    
            assert size <= getMaxDistributionSizeBytes() : "Distribution content needs to be verified. If the increase is expected, raise the size by ${Math.ceil((size - getMaxDistributionSizeBytes()) / 1024 / 1024)}"
        }
    
        def "no duplicate jar entries in distribution"() {
            given:
            def entriesByPath = zipEntries.groupBy { it.name }
            def dupes = entriesByPath.findAll { it.value.size() > 1 }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top