Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for localName (0.2 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            if (StringUtil.isBlank(value)) {
                return null;
            }
    
            final String localeName = value.trim().toLowerCase(Locale.ENGLISH).replace("-", "_");
    
            for (final String supportedLang : supportedLanguages) {
                if (localeName.startsWith(supportedLang.toLowerCase(Locale.ENGLISH))) {
                    return supportedLang;
                }
            }
            return null;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. build/common.sh

      # Make sure the context directory owned by the right user for syncing sources to container.
      chown -R "${USER_ID}":"${GROUP_ID}" "${LOCAL_OUTPUT_BUILD_CONTEXT}"
    
      cp /etc/localtime "${LOCAL_OUTPUT_BUILD_CONTEXT}/"
      chmod u+w "${LOCAL_OUTPUT_BUILD_CONTEXT}/localtime"
    
      cp "${KUBE_ROOT}/build/build-image/Dockerfile" "${LOCAL_OUTPUT_BUILD_CONTEXT}/Dockerfile"
      cp "${KUBE_ROOT}/build/build-image/rsyncd.sh" "${LOCAL_OUTPUT_BUILD_CONTEXT}/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    // initialized from the IANA Time Zone database-formatted data.
    // The data should be in the format of a standard IANA time zone file
    // (for example, the content of /etc/localtime on Unix systems).
    func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
    	d := dataIO{data, false}
    
    	// 4-byte magic "TZif"
    	if magic := d.read(4); string(magic) != "TZif" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        bool on_stack = !on_stack_nodes_.insert(child_ref.node_id()).second;
        if (on_stack) {
          // This is a backedge. Don't traverse it.
          continue;
        }
    
        path_segments_.push_back(child_ref.local_name());
        RecursivelyVisitObjectGraph(child_ref.node_id());
        path_segments_.pop_back();
    
        on_stack_nodes_.erase(child_ref.node_id());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top