Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for DEC (0.08 sec)

  1. android/guava-tests/test/com/google/common/primitives/IntsTest.java

              .isNull();
          assertWithMessage("Radix: " + radix)
              .that(Ints.tryParse(Long.toString((long) LEAST - 1, radix), radix))
              .isNull();
        }
        assertWithMessage("Hex string and dec parm").that(Ints.tryParse("FFFF", 10)).isNull();
        assertWithMessage("Mixed hex case").that((int) Ints.tryParse("ffFF", 16)).isEqualTo(65535);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/LongsTest.java

              .that(
                  Longs.tryParse(
                      BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString(), radix))
              .isNull();
        }
        assertWithMessage("Hex string and dec parm").that(Longs.tryParse("FFFF", 10)).isNull();
        assertWithMessage("Mixed hex case")
            .that(Longs.tryParse("ffFF", 16).longValue())
            .isEqualTo(65535);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/time/format.go

    	"Wed",
    	"Thu",
    	"Fri",
    	"Sat",
    }
    
    var shortMonthNames = []string{
    	"Jan",
    	"Feb",
    	"Mar",
    	"Apr",
    	"May",
    	"Jun",
    	"Jul",
    	"Aug",
    	"Sep",
    	"Oct",
    	"Nov",
    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    	"May",
    	"June",
    	"July",
    	"August",
    	"September",
    	"October",
    	"November",
    	"December",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
        }
    
        protected void writeFileName(final StreamResponse response, final ResponseData responseData) {
            String charset = responseData.getCharSet();
            if (charset == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/IntsTest.java

              .isNull();
          assertWithMessage("Radix: " + radix)
              .that(Ints.tryParse(Long.toString((long) LEAST - 1, radix), radix))
              .isNull();
        }
        assertWithMessage("Hex string and dec parm").that(Ints.tryParse("FFFF", 10)).isNull();
        assertWithMessage("Mixed hex case").that((int) Ints.tryParse("ffFF", 16)).isEqualTo(65535);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/time/time.go

    }
    
    // ISOWeek returns the ISO 8601 year and week number in which t occurs.
    // Week ranges from 1 to 53. Jan 01 to Jan 03 of year n might belong to
    // week 52 or 53 of year n-1, and Dec 29 to Dec 31 might belong to week 1
    // of year n+1.
    func (t Time) ISOWeek() (year, week int) {
    	// According to the rule that the first calendar week of a calendar year is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <pgp value="BE685132AFD2740D9095F9040CC0B712FEE75827"/>
             </artifact>
          </component>
          <component group="org.brotli" name="dec" version="0.1.2">
             <artifact name="dec-0.1.2.jar">
                <pgp value="3A4D86C56CA99373B6D8953DBE84D764623A3644"/>
             </artifact>
          </component>
          <component group="org.codehaus.gpars" name="gpars" version="1.2.1">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server.go

    	servermetrics.HTTPInflightRequests.WithLabelValues(method, path, serverType, longRunning).Inc()
    	defer servermetrics.HTTPInflightRequests.WithLabelValues(method, path, serverType, longRunning).Dec()
    
    	startTime := time.Now()
    	defer servermetrics.HTTPRequestsDuration.WithLabelValues(method, path, serverType, longRunning).Observe(servermetrics.SinceInSeconds(startTime))
    
    	handler.ServeHTTP(w, req)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // failEarlier is like fail, but decrements the offset to indicate
    // that the point of failure occurred earlier in the string.
    func (st *state) failEarlier(err string, dec int) {
    	if st.off < dec {
    		panic("internal error")
    	}
    	panic(demangleErr{err: err, off: st.off - dec})
    }
    
    // advance advances the current string offset.
    func (st *state) advance(add int) {
    	if len(st.str) < add {
    		panic("internal error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

                da:ba:53:19:1b:09:4b:82:b2:89:26:7d:c7:6f:a0:02
            Signature Algorithm: sha256WithRSAEncryption
            Issuer: O = Acme Co
            Validity
                Not Before: Dec 21 16:59:27 2021 GMT
                Not After : Dec 21 16:59:27 2022 GMT
            Subject: O = Acme Co
            Subject Public Key Info:
                Public Key Algorithm: rsaEncryption
                    RSA Public-Key: (2048 bit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top