Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,107 for gotType (0.21 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            int type = be.getOperation().getType();
            if ((type == Types.ASSIGNMENT_OPERATOR || type == Types.EQUAL)
                && left instanceof ClassExpression) {
                ClassExpression ce = (ClassExpression) left;
                String error = "you tried to assign a value to the class '" + ce.getType().getName() + "'";
                if (ce.getType().isScript()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    bool HasEqualElementSize(Value val1, Value val2, ArrayRef<int> val1_indices,
                             ArrayRef<int> val2_indices) {
      ShapedType val1_shape = mlir::cast<ShapedType>(val1.getType());
      ShapedType val2_shape = mlir::cast<ShapedType>(val2.getType());
      if (!val1_shape.hasRank() || !val2_shape.hasRank()) return false;
    
      int val1_result = 1;
      int val2_result = 1;
      for (auto idx : val1_indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

          // Because of the property of graph region, the control operands may
          // not have been converted to tf_executor::ControlType.
          if (mlir::isa<tfg::ControlType>(value.getType()) ||
              mlir::isa<tf_executor::ControlType>(value.getType())) {
            if (!mlir::isa<BlockArgument>(value))
              island_control_operands.push_back(value);
          } else {
            inner_op_operands.push_back(value);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        auto input_type = mlir::dyn_cast_or_null<RankedTensorType>(input.getType());
        if (!input_type) return failure();
        auto fft_len = rfft_op.getFftLength();
        auto fft_len_type = mlir::dyn_cast_or_null<ShapedType>(fft_len.getType());
        if (!fft_len_type) return failure();
    
        auto output_type =
            mlir::dyn_cast_or_null<RankedTensorType>(rfft_op.getResult().getType());
        if (!output_type) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return find(ModelPath.path(path), type);
        }
    
        @Override
        public <T> T find(ModelPath path, ModelType<T> type) {
            return toType(type, get(path), "find(ModelPath, ModelType)");
        }
    
        private <T> T toType(ModelType<T> type, ModelNodeInternal node, String msg) {
            if (node == null) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  9. 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)
  10. src/net/sockopt_windows.go

    func setDefaultSockopts(s syscall.Handle, family, sotype int, ipv6only bool) error {
    	if family == syscall.AF_INET6 && sotype != syscall.SOCK_RAW {
    		// Allow both IP versions even if the OS default
    		// is otherwise. Note that some operating systems
    		// never admit this option.
    		syscall.SetsockoptInt(s, syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY, boolint(ipv6only))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.5K bytes
    - Viewed (0)
Back to top