Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for camelus (0.21 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        UNSATISFIED_BEFORE_AND_WHILE_WAITING,
        UNSATISFIED_AND_INTERRUPTED_BEFORE_WAITING;
    
        @Override
        public String toString() {
          return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name());
        }
      }
    
      /** Timeout values to combine with each {@link Scenario}. */
      private enum Timeout {
        MIN(Long.MIN_VALUE, "-oo"),
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            return source;
        }
    
        protected Map<String, Object> toLowerHyphen(final Map<String, Object> source) {
            return source.entrySet().stream()
                    .collect(Collectors.toMap(e -> CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, e.getKey()), e -> {
                        final Object value = e.getValue();
                        if (value instanceof Map) {
                            @SuppressWarnings("unchecked")
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  3. cmd/metrics-v2.go

    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    func toSnake(camel string) (snake string) {
    	var b strings.Builder
    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

      /**
       * The <a href="https://en.wikipedia.org/wiki/Camera_Image_File_Format">Canon Image File
       * Format</a> ({@code crw} files), a widely-used "raw image" format for cameras. It is found in
       * {@code /etc/mime.types}, e.g. in <a href=
       * "http://anonscm.debian.org/gitweb/?p=collab-maint/mime-support.git;a=blob;f=mime.types;hb=HEAD"
       * >Debian 3.48-1</a>.
       *
       * @since 15.0
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // amfam : 2015-07-23 AmFam, Inc.
    amfam
    
    // amica : 2015-05-28 Amica Mutual Insurance Company
    amica
    
    // amsterdam : 2014-07-24 Gemeente Amsterdam
    amsterdam
    
    // analytics : 2014-12-18 Campus IP LLC
    analytics
    
    // android : 2014-08-07 Charleston Road Registry Inc.
    android
    
    // anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
    anquan
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  6. CHANGELOG/CHANGELOG-1.19.md

    - The metric label name of `kubernetes_build_info` has been updated from `camel case` to `snake case`:
      - gitVersion --> git_version
      - gitCommit --> git_commit
      - gitTreeState --> git_tree_state
      - buildDate --> build_date
      - goVersion --> go_version
      
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Jan 05 05:42:32 GMT 2022
    - 489.7K bytes
    - Viewed (0)
Back to top