Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for 202s (0.11 sec)

  1. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            expect:
            TimeFormatting.formatDurationVeryTerse(0) == '0s'
            TimeFormatting.formatDurationVeryTerse(7) == '0.007s'
            TimeFormatting.formatDurationVeryTerse(1200) == '1.200s'
            TimeFormatting.formatDurationVeryTerse(59202) == '59.202s'
        }
    
        def formatsLongDuration() {
            expect:
            TimeFormatting.formatDurationVeryTerse(60 * 1000) == '1m0.00s'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    eb\240?f\006r\361\353\254\335?\200\265\222<\n\t\355?\244\374\301\010\306\010\343?\316\365r\274(\016\322?\0206\025\340\323\013\275?\376\037\327e\312\357\322?Z\302S\376A{\332?\030\025\275\270p\342\317?\202A|c\0173\357?\232\247\333\350^\247\326?&\275\225\343\300\003\347?\301\246\260D\365\342\341?&\202BB\261\373\323?|RX\203bD\316?Q\363\340\302s\233\357?@\006\021\235|R\272?\264\325+\315\204\336\316?0t\024\202\2042\252?M\252\307%`s\350?\214\335q}\2605\321?\367\377\231{.\251\353?\310i\232\"\377\217\341...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  3. test/prove_constant_folding.go

    // errorcheck -0 -d=ssa/prove/debug=2
    
    //go:build amd64
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func f0i(x int) int {
      if x == 20 {
        return x // ERROR "Proved.+is constant 20$"
      }
    
      if (x + 20) == 20 {
        return x + 5 // ERROR "Proved.+is constant 0$"
      }
    
      return x / 2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 604 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    UnsupportedConstruct(
                        languageFeature = UninitializedProperty,
                        potentialElementSource = indexes: 20..25, line/column: 3/1..3/6, file: test,
                        erroneousSource = indexes: 20..25, line/column: 3/1..3/6, file: test
                    )
                )
                ErroneousStatement (
                    ParsingError(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/encoding/json/indent.go

    			dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
    			start = i + 1
    		}
    		// Convert U+2028 and U+2029 (E2 80 A8 and E2 80 A9).
    		if c == 0xE2 && i+2 < len(src) && src[i+1] == 0x80 && src[i+2]&^1 == 0xA8 {
    			dst = append(dst, src[start:i]...)
    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + len("\u2029")
    		}
    	}
    	return append(dst, src[start:]...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. test/codegen/smallintiface.go

    // asmcheck
    
    package codegen
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    func booliface() interface{} {
    	// amd64:`LEAQ\truntime.staticuint64s\+8\(SB\)`
    	return true
    }
    
    func smallint8iface() interface{} {
    	// amd64:`LEAQ\truntime.staticuint64s\+2024\(SB\)`
    	return int8(-3)
    }
    
    func smalluint8iface() interface{} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 21:43:01 UTC 2020
    - 500 bytes
    - Viewed (0)
  7. docs/tr/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. internal/config/constants.go

    	EnvRootDriveThresholdSize     = "MINIO_ROOTDRIVE_THRESHOLD_SIZE"
    	EnvRootDiskThresholdSize      = "MINIO_ROOTDISK_THRESHOLD_SIZE" // Deprecated Sep 2023
    	EnvBrowserLoginAnimation      = "MINIO_BROWSER_LOGIN_ANIMATION"
    	EnvBrowserSessionDuration     = "MINIO_BROWSER_SESSION_DURATION" // Deprecated after November 2023
    	EnvMinioStsDuration           = "MINIO_STS_DURATION"
    	EnvMinIOLogQueryURL           = "MINIO_LOG_QUERY_URL"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/cloud.md

    * <a href="https://docs.porter.run/language-specific-guides/fastapi" class="external-link" target="_blank">Porter</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top