Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for IsString (0.14 sec)

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

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h"
    
    #include <cstring>
    #include <string>
    
    #include "absl/strings/match.h"
    #include "absl/strings/str_cat.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirClassErrorType.kt

        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion {
                qualifiers.joinToString(separator = ".") { it.name.asString() }
            }
    
        @KaAnalysisNonPublicApi
        override val errorMessage: String get() = withValidityAssertion { coneDiagnostic.reason }
    
        override val annotations: KaAnnotationList by cached {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValueRenderer.kt

            append(value.constantValue.renderAsKotlinConstant())
        }
    
        private fun StringBuilder.renderEnumEntryConstantValue(value: KaEnumEntryAnnotationValue) {
            append(value.callableId?.asSingleFqName()?.asString())
        }
    
        private fun StringBuilder.renderAnnotationConstantValue(application: KaAnnotationApplicationValue) {
            renderAnnotationApplication(application.annotationValue)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AuthScheme.groovy

                return securityHandler
            }
    
            void addConstraint(ConstraintSecurityHandler securityHandler, String path) {
                securityHandler.addConstraintMapping(createConstraintMapping(path))
            }
    
            private ConstraintMapping createConstraintMapping(String path) {
                def constraint = new Constraint()
                constraint.name = constraintName()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

        def setup() {
            buildFile << """
    class TextTask extends DefaultTask {
        @Nested
        TextResource text
    
        @TaskAction
        def go() {
            println text.asString()
        }
    }
    
    task text(type: TextTask)
    """
        }
    
        def "reports read of missing text file"() {
            given:
            buildFile << """
                text.text = resources.text.fromFile('no-such-file')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         * @return a new filtered graph
         */
        @Nonnull
        Node filter(@Nonnull Predicate<Node> filter);
    
        /**
         * Returns a string representation of this dependency node.
         *
         * @return the string representation
         */
        @Nonnull
        String asString();
    
        /**
         * Obtain a Stream containing this node and all its descendant.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

     */
    @Named
    @Singleton
    public class DefaultModelResolver implements ModelResolver {
    
        @Override
        public ModelSource resolveModel(
                Session session, String groupId, String artifactId, String version, Consumer<String> resolvedVersion)
                throws ModelResolverException {
            try {
                ArtifactCoordinate coord = session.createArtifactCoordinate(groupId, artifactId, version, "pom");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/c/tf_buffer.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/tf_buffer.h"
    
    #include <cstddef>
    #include <cstdint>
    #include <cstring>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mem.h"
    #include "tensorflow/core/platform/protobuf.h"  // IWYU pragma: keep
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java

        private static final String NAME_PREFIX = "reqHeaderTest_";
        private static final String API_PATH = "/api/admin/reqheader";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // Caller will take ownership of buffer.
      *buffer = reinterpret_cast<char*>(malloc(bytes));
    
      if (*buffer == nullptr) {
        return -1;
      }
    
      // Set num of string
      //
      // NOTE: The string buffer is accessed here as if it's native endian (instead
      // of small endian, as documented in the header). This will protentially break
      // when TFLite is ported to big endian platforms.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top