Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 720 for getDtype (0.15 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

            DocLink documentationUrl = featureUsage.getDocumentationUrl();
            return documentationUrl == null ? null : documentationUrl.getUrl();
        }
    
        @Override
        public String getType() {
            return featureUsage.getType().name();
        }
    
        @Override
        public List<StackTraceElement> getStackTrace() {
            return diagnostics.getStack();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

            FileMetadata fileMetadata = stat.stat(root);
            if (fileMetadata.getType() == FileType.RegularFile) {
                visitJarContents(root, visitor);
            } else if (fileMetadata.getType() == FileType.Directory) {
                visitDirectoryContents(root, visitor);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MetadataSnapshot.java

            @Override
            public FileType getType() {
                return FileType.Directory;
            }
    
            @Override
            public FileSystemNode asFileSystemNode() {
                return PartialDirectoryNode.withoutKnownChildren();
            }
        };
    
        /**
         * The type of the file.
         */
        FileType getType();
    
        FileSystemNode asFileSystemNode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.td

      CPred<"quant::ReshapableTo1DTensor($0.getType().cast<ShapedType>())">,
      "Checks if the value dims are all ones except the right most dim">;
    
    def ReshapeTo1DTensor : NativeCodeCall<
      "quant::ReshapeTo1DTensor($_builder, $_loc, $0)">;
    
    def HasEqualShape : Constraint<CPred<
      "$0.getType().cast<ShapedType>().hasRank() && "
      "$1.getType().cast<ShapedType>().hasRank() && "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

          }
        }
    
        // Input rhs must be a constant with rank 2.
        if (constant.getType().getRank() != 2) return failure();
    
        // Create a tfl.transpose op that performs ZX transpose on `input`.
        auto create_z_x_transpose_op = [&](Value input) -> Value {
          RankedTensorType input_type =
              mlir::cast<RankedTensorType>(input.getType());
          const int input_rank = input_type.getRank();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/LinuxFileWatcherRegistryFactory.java

                Collection<File> directoriesToCheck = vfsRoot.rootSnapshots()
                    .filter(snapshot -> snapshot.getType() != FileType.Missing)
                    .filter(watchableHierarchies::shouldWatch)
                    .map(snapshot -> {
                        switch (snapshot.getType()) {
                            case RegularFile:
                                return new File(snapshot.getAbsolutePath()).getParentFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

                    FileSystemLocationFingerprint fingerprint;
                    if (relativePath.isRoot()) {
                        if (snapshot.getType() == FileType.RegularFile) {
                            fingerprint = fingerprint(snapshot.getName(), snapshot.getType(), snapshot);
                        } else {
                            return SnapshotVisitResult.CONTINUE;
                        }
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultDeprecationData.java

    public class DefaultDeprecationData implements DeprecationData {
    
        private final Type type;
    
        public DefaultDeprecationData(Type type) {
            this.type = type;
        }
    
        @Override
        public Type getType() {
            return type;
        }
    
        public static AdditionalDataBuilder<DeprecationData> builder() {
            return new DefaultDeprecationDataBuilder();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

            artifact.setVersion(version);
        }
    
        /** {@inheritDoc} */
        public String getScope() {
            return artifact.getScope();
        }
    
        /** {@inheritDoc} */
        public String getType() {
            return artifact.getType();
        }
    
        /** {@inheritDoc} */
        public String getClassifier() {
            return artifact.getClassifier();
        }
    
        /** {@inheritDoc} */
        public boolean hasClassifier() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractTypeTest.kt

        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val actual = analyseForTest(mainFile) {
                val type = getType(analysisSession, mainFile, mainModule, testServices)
    
                buildString {
                    appendLine(DebugSymbolRenderer(renderTypeByProperties = true).renderType(analysisSession, type))
    
                    appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top