Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for 020f (0.08 sec)

  1. src/math/big/floatconv_test.go

    		{"%020f", math.Inf(-1), "                -Inf"},
    		{"%020f", math.Inf(+1), "                +Inf"},
    		{"% 020f", math.Inf(-1), "                -Inf"},
    		{"% 020f", math.Inf(+1), "                 Inf"},
    		{"%+020f", math.Inf(-1), "                -Inf"},
    		{"%+020f", math.Inf(+1), "                +Inf"},
    		{"%20f", -1.0, "           -1.000000"},
    
    		// handle %v like %g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%+-20G", NaN, "+NaN                "},
    	// Zero padding does not apply to infinities and NaN.
    	{"%+020e", posInf, "                +Inf"},
    	{"%+020x", posInf, "                +Inf"},
    	{"%-020f", negInf, "-Inf                "},
    	{"%-020E", NaN, "NaN                 "},
    	{"%-020X", NaN, "NaN                 "},
    
    	// complex values
    	{"%.f", 0i, "(0+0i)"},
    	{"% .f", 0i, "( 0+0i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    70\354?Xk\300\202\376\355\277?\010;\262\0163\316\355?\205*B\372\232\343\354?H\020\343XN\010\303?\220\020r\202\000\352\267?\351\\\237Q\373\212\350?\333\376C]V;\345?V_\202\363\377\330\324?@\032\356\335\304\357\254?`\255\330{:\252\304?\206\321@Wd\010\337?\3560\314\3509K\344?\225\177^\312\233\375\351?\347Mf\0146\367\344?y\342\327\352\265\r\357?X\031\327i\355\312\334?8\025\372|\232X\263?\321\374M%\200\274\350?\'\034\rw\020w\347?N\313\3303\370\355\333?\003\236\366\031\314\216\353?\236+\311\247\306L\35...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            expect:
            !accept("[1.0,2.0]", "0.99")
            !accept("[1.0,2.0]", "2.0.1")
            !accept("[1.0,2.0]", "42")
    
            !accept("[1.0,2.0[", "0.99")
            !accept("[1.0,2.0[", "2.0")
            !accept("[1.0,2.0[", "42")
            !accept("[1.0,2.0[", "2.0-final")
    
            !accept("]1.0,2.0]", "1.0")
            !accept("]1.0,2.0]", "2.0.1")
            !accept("]1.0,2.0]", "42")
    
            !accept("]1.0,2.0[", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

    public class QueryResponseListTest extends UnitFessTestCase {
        public void test_calculatePageInfo_page0() {
            QueryResponseList qrList;
    
            qrList = new QueryResponseList(null, 0, 20, 0) {
                @Override
                public int size() {
                    return 0;
                }
            };
            qrList.calculatePageInfo();
            assertEquals(20, qrList.getPageSize());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

          protocol: HTTP
      - hosts:
        - 'web.testing-02-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: testing-service-01-test-04
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-04
      hosts:
      - 'web.testing-02-04.com' # Expected: no validation error since this host exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/ipset_test.go

    			set: &utilipset.IPSet{
    				Name: "abz",
    			},
    			setType:         utilipset.HashIPPort,
    			ipv6:            true,
    			activeEntries:   []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    			currentEntries:  []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    			expectedEntries: []string{"FE80::0202:B3FF:FE1E:8329,tcp:80"},
    		},
    		{
    			name: "ipset sync with updated udp->tcp in hash",
    			set: &utilipset.IPSet{
    				Name: "bca",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

          protocol: HTTP
      - hosts:
        - 'web.testing-02-04.com'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-04
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-04
      hosts:
      - 'web.testing-02-04.com' # Expected: no validation error since this host exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

                result.add(OWNER_READ);
            }
            if (isSet(mode, 0200)) {
                result.add(OWNER_WRITE);
            }
            if (isSet(mode, 0100)) {
                result.add(OWNER_EXECUTE);
            }
    
            if (isSet(mode, 040)) {
                result.add(GROUP_READ);
            }
            if (isSet(mode, 020)) {
                result.add(GROUP_WRITE);
            }
            if (isSet(mode, 010)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/fonts.css

      font-style: italic;
      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz4dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* latin */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top