Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 387 for IsString (0.12 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. api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java

         */
        @Nullable
        Boundary getLowerBoundary();
    
        /**
         * Returns a string representation of this version range
         * @return the string representation of this version range
         */
        @Nonnull
        String asString();
    
        /**
         * Represents range boundary.
         */
        interface Boundary {
            /**
             * The bounding version.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractNode.java

                    getChildren().stream().filter(filter).map(n -> n.filter(filter)).collect(Collectors.toList());
            return new WrapperNode(this, Collections.unmodifiableList(children));
        }
    
        @Override
        public String asString() {
            StringBuilder sb = new StringBuilder();
    
            DependencyNode node = getDependencyNode();
            Artifact artifact = node.getArtifact();
            sb.append(artifact);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/resources/CharSourceBackedTextResource.java

    public class CharSourceBackedTextResource implements TextResourceInternal {
    
        private final String displayName;
        private final CharSource charSource;
    
        public CharSourceBackedTextResource(String displayName, CharSource charSource) {
            this.displayName = displayName;
            this.charSource = charSource;
        }
    
        @Override
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            where:
            type            | value                                                                | display
            "String"        | '["a", "b", "c"]'                                                    | '[a, b, c]'
            "Param<String>" | '[new Param<String>(display: "a"), new Param<String>(display: "b")]' | '[a, b]'
        }
    
        def "can finalize the value of a property using API"() {
            given:
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/api/internal/resources/FileCollectionBackedTextResource.java

            this.fileCollection = fileCollection;
            this.charset = charset;
        }
    
        @Override
        public String getDisplayName() {
            return fileCollection.toString();
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    
        @Override
        public String asString() {
            File file = asFile();
            try {
                return Files.asCharSource(file, charset).read();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test_util.cc

      return th;
    }
    
    TFE_TensorHandle* TestScalarTensorHandle(TFE_Context* ctx,
                                             const tensorflow::tstring& value) {
      TF_Status* status = TF_NewStatus();
      TF_Tensor* t = TFE_AllocateHostTensor(ctx, TF_STRING, nullptr, 0, status);
      tstring* data = static_cast<tstring*>(TF_TensorData(t));
      *data = value;
      TFE_TensorHandle* th = TFE_NewTensorHandleFromTensor(ctx, t, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriter.java

            jsonWriter.setIndent("  ");
    
            new ModuleMetadataJsonWriter(
                jsonWriter,
                metadata,
                metadata.mustIncludeBuildId ? buildInvocationScopeId.getId().asString() : null,
                checksumService
            ).write();
    
            jsonWriter.flush();
            writer.append('\n');
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top