Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 509 for string_util (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/string_util.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/tensorflow/utils/string_util.h"
    
    #include <ostream>
    #include <string>
    
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 23:18:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

    Russell Power <******@****.***> 1684179788 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/BUILD

            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Parser",
            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "string_util",
        srcs = ["utils/string_util.cc"],
        hdrs = ["utils/string_util.h"],
        deps = [
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

    #include "tensorflow/compiler/mlir/lite/utils/low_bit_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    #include "tensorflow/lite/string_util.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace TFL {
    namespace {
    
    using ::absl::StatusOr;
    using ::mlir::Builder;
    using ::mlir::quant::QuantizedType;
    using ::tflite::TensorT;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/string_util.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/core/lib/monitoring/gauge.h"
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/string_util.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

         *
         * <pre>
         * StringUtils.isAsciiPrintable(null)     = false
         * StringUtils.isAsciiPrintable("")       = true
         * StringUtils.isAsciiPrintable(" ")      = true
         * StringUtils.isAsciiPrintable("Ceki")   = true
         * StringUtils.isAsciiPrintable("ab2c")   = true
         * StringUtils.isAsciiPrintable("!ab-c~") = true
         * StringUtils.isAsciiPrintable("\u0020") = true
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/util/StringUtil.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.internal.util;
    
    
    /**
     * 
     */
    public final class StringUtil {
    
        /**
         * 
         */
        private StringUtil () {}
    
    
        /**
         * Implementation of {@link java.lang.String#join} backported for JDK7.
         * 
         * @param delimiter
         * @param elements
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/string_utils.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/utils/string_utils.h"
    
    #include <cstddef>
    #include <cstdint>
    #include <cstdlib>
    #include <cstring>
    #include <vector>
    
    #include "absl/status/status.h"
    
    namespace mlir::TFL {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/util/src/org/example/util/StringUtils.java

    package org.example.util;
    
    public class StringUtils {
        public static String getStandardGreeting() {
            return "Hello, world!";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
Back to top