Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for localName (0.4 sec)

  1. build/build-image/Dockerfile

      && git config --system user.name "kube-build-image"
    
    # Fix permissions on gopath
    RUN chmod -R a+rwx $GOPATH
    
    # Make log messages use the right timezone
    ADD localtime /etc/localtime
    RUN chmod a+r /etc/localtime
    
    # Set up rsyncd
    ADD rsyncd.password /
    RUN chmod a+r /rsyncd.password
    ADD rsyncd.sh /
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          if (child.local_name() == "_create_resource" &&
              obj_graph.nodes(child.node_id()).kind_case() ==
                  SavedObject::kFunction) {
            resource.create_resource = &objects->concrete_functions[child_node_id];
          } else if (child.local_name() == "_initialize" &&
                     obj_graph.nodes(child.node_id()).kind_case() ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                    }
    
                    @Override
                    public void onStart() {
                        super.onStart();
                        LocalTime currentTime = new LocalTime();
                        TextView textView = (TextView) findViewById(R.id.text_view);
                        textView.setText("The current local time is: " + currentTime);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.measure.MeasuredOperation;
    import org.joda.time.LocalDate;
    
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.SQLIntegrityConstraintViolationException;
    import java.sql.Statement;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

    import org.gradle.performance.measure.DataSeries;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.measure.MeasuredOperation;
    import org.gradle.util.GradleVersion;
    import org.joda.time.LocalDate;
    
    import java.math.BigDecimal;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.SQLIntegrityConstraintViolationException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/runtime/runtime.cc

        // parent object. This name will be the name of the object stored in the
        // generated module.
        auto& child_node = nodes.at(child.node_id());
        auto child_name = child.local_name().c_str();
    
        if (child_node.kind_case() == tensorflow::SavedObject::kFunction) {
          Function tf_function;
          for (const std::string& fn_name :
               child_node.function().concrete_functions()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      const SavedObject* current_node = &nodes.Get(node_id);
      for (const auto& child : current_node->children()) {
        ConcreteFunction* concrete_fn;
        Status status = GetFunction(child.local_name(), &concrete_fn);
        if (status.ok()) {
          (*functions)[child.local_name()] = concrete_fn;
        }
      }
      return Status();
    }
    
    Status TFSavedModelAPI::GetSignatureDefFunction(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/basicInfoMap.dfprop

        # o dbfluteSystemFinalTimeZone: (NotRequired - Default null)
        #  The ID of time-zone for DBFlute system.
        #  basically for e.g. DisplaySql, Date conversion, LocalDate mapping and so on...
        #
        #; dbfluteSystemFinalTimeZone = GMT
        # - - - - - - - - - -/
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    fi
    if [[ "${IMAGE_NAME:-}" == "" ]]; then
      IMAGE_NAME=build-tools
    fi
    
    DOCKER_GID="${DOCKER_GID:-$(grep '^docker:' /etc/group | cut -f3 -d:)}"
    
    TIMEZONE=$(readlink "$readlink_flags" /etc/localtime | sed -e 's/^.*zoneinfo\///')
    
    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. 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)
Back to top