Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 298 for Mystring (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    #ifdef __BORLANDC__
    // string.h is not guaranteed to provide strcpy on C++ Builder.
    # include <mem.h>
    #endif
    
    #include <string.h>
    #include <string>
    
    #include "gtest/internal/gtest-port.h"
    
    namespace testing {
    namespace internal {
    
    // String - an abstract class holding static string utilities.
    class GTEST_API_ String {
     public:
      // Static utility methods
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/string-attr.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-splatted-mlir %s -o - | FileCheck %s
    
    # CHECK: tf.Const
    # CHECK-SAME: value = dense<""> : tensor<3x!tf_type.string>
    
    node {
      name: "save/SaveV2/shape_and_slices"
      op: "Const"
      attr {
        key: "_output_shapes"
        value {
          list {
            shape {
              dim {
                size: 3
              }
            }
          }
        }
      }
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 713 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	return n
    }
    
    // String implements fmt.Stringer.String.
    //
    // Note: characters inside the labels are not escaped in any way.
    func (n Name) String() string {
    	return string(n.Data[:n.Length])
    }
    
    // GoString implements fmt.GoStringer.GoString.
    func (n *Name) GoString() string {
    	return `dnsmessage.MustNewName("` + printString(n.Data[:n.Length]) + `")`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if r := fn(t); r != nil {
    		return r
    	}
    	return t
    }
    
    func (t *Typed) GoString() string {
    	return t.goString(0, "")
    }
    
    func (t *Typed) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTyped:\n%s\n%s", indent, "", field,
    		t.Name.goString(indent+2, "Name: "),
    		t.Type.goString(indent+2, "Type: "))
    }
    
    // Qualified is a name in a scope.
    type Qualified struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/compile/CodeFragmentCapturedValue.kt

    import org.jetbrains.kotlin.name.Name
    
    public sealed class CodeFragmentCapturedValue(
        public val name: String,
        public val isMutated: Boolean,
        public val isCrossingInlineBounds: Boolean,
    ) {
        public open val displayText: String
            get() = name
    
        override fun toString(): String {
            return this::class.simpleName + "[name: " + name + "; isMutated: " + isMutated + "; displayText: " + displayText + "]"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

    
    private
    fun hasFunctionFlags(functionsSupplier: Supplier<MutableList<KmFunction>>, jvmSignature: String, predicate: FlagsPredicate) =
        functionsSupplier.get().firstOrNull {
            jvmSignature == it.signature?.asString()
        }?.flags?.let { predicate(it) } ?: false
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 07 08:14:15 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelVersionParser.java

            public int hashCode() {
                return delegate.hashCode();
            }
    
            @Override
            public String asString() {
                return delegate.toString();
            }
    
            @Override
            public String toString() {
                return asString();
            }
        }
    
        static class DefaultVersionRange implements VersionRange {
            private final VersionScheme versionScheme;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        private static String replaceLineSeparatorsInternalOf(CharSequence string, String bySeparator) {
            logDeprecation();
            return replaceAll("\r\n|\r|\n", string, bySeparator);
        }
    
        private static String replaceAll(String regex, CharSequence inString, String byString) {
            return replaceAll(Pattern.compile(regex), inString, byString);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/containers-string-invoke/tests/string-invoke.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        auto value = flatbuffer_vector[i];
    
        if (value.IsBool()) {
          mlir_vector.push_back(BuildVhloBooleanV1Attr(value.AsBool(), builder));
        } else if (value.IsString()) {
          mlir_vector.push_back(
              BuildVhloStringV1Attr(value.AsString().str(), builder));
        } else if (value.IsInt()) {
          mlir_vector.push_back(BuildVhloIntV1Attr(value.AsInt64(), builder));
        } else if (value.IsFloat()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top