Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 720 for getDtype (0.18 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessor.java

            } catch (NativeException e) {
                throw new UncheckedIOException("Could not stat file " + f.getAbsolutePath(), e);
            }
            AccessType accessType = AccessType.viaSymlink(stat.getType() == FileInfo.Type.Symlink);
            if (accessType == AccessType.VIA_SYMLINK) {
                try {
                    stat = files.stat(f, true);
                } catch (NativeException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/variables_utils.cc

      ShapedType type;
      if (llvm::isa<TF::ReadVariableOp>(op)) {
        type = op->getResult(0).getType().cast<ShapedType>();
      } else if (llvm::isa<TF::AssignVariableOp>(op)) {
        type = op->getOperand(1).getType().cast<ShapedType>();
      } else if (llvm::isa<TF::VarHandleOp>(op)) {
        type = op->getResult(0)
                   .getType()
                   .cast<ShapedType>()
                   .getElementType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 19:32:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/attributes/IncubatingAttributesChecker.java

            return isIncubatingAttributeValue(attribute.getType(), null);
        }
    
        public static <T> boolean isIncubating(Attribute<T> key, @Nullable T value) {
            if (isIncubatingAttributeInterface(key)) {
                return true;
            } else {
                return isIncubatingAttributeValue(key.getType(), value);
            }
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 12:54:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInspector.java

            public Class<T> asClass() {
                return clazz;
            }
    
            @Override
            public boolean isImperative() {
                return true;
            }
    
            @Override
            public Type getType() {
                return Type.IMPERATIVE_CLASS;
            }
    
            @Override
            public boolean isHasRules() {
                return false;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbConstants.java

         * represents is a server.
         */
        static final int TYPE_SERVER = 0x04;
        /**
         * Returned by {@link jcifs.SmbResource#getType()} if the resource this <tt>SmbFile</tt>
         * represents is a share.
         */
        static final int TYPE_SHARE = 0x08;
        /**
         * Returned by {@link jcifs.SmbResource#getType()} if the resource this <tt>SmbFile</tt>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultMutableAttributeContainer.java

                    throw new IllegalArgumentException("Cannot have two attributes with the same name but different types. "
                        + "This container already has an attribute named '" + name + "' of type '" + attribute.getType().getName()
                        + "' and you are trying to store another one of type '" + key.getType().getName() + "'");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 20:29:26 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaData.java

        }
    
        public boolean isProviderApi() {
            // TODO: Crude approximation
            return setter == null && (getType().getName().contains("Provider") || getType().getName().contains("Property"));
        }
    
        public ClassMetaData getOwnerClass() {
            return ownerClass;
        }
    
        public String getSignature() {
            StringBuilder builder = new StringBuilder();
            builder.append(type.getSignature());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                changeConsumer.visitChange(added);
                current = nextEntry(currentEntries);
            }
    
            void removed() {
                DefaultFileChange removed = DefaultFileChange.removed(previous.getKey(), propertyTitle, previous.getValue().getType(), previous.getValue().getNormalizedPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/FactoryBasedStructNodeInitializerExtractionStrategy.java

                return null;
            }
            NodeInitializer nodeInitializer = getNodeInitializer(Cast.<ModelSchema<? extends T>>uncheckedCast(schema));
            if (nodeInitializer == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

            ClassWriter visitor = classGenerator.getVisitor();
    
            Type generatedType = classGenerator.getGeneratedType();
    
            Type superclassType = Type.getType(implClass);
            Type publicType = Type.getType(publicContractType);
    
            generateClass(visitor, generatedType, superclassType, publicType);
            generateConstructors(visitor, implClass, superclassType);
            visitor.visitEnd();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top