Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for typeName (0.12 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTypeValidationData.java

        private final String parentPropertyName;
        private final String typeName;
    
        public DefaultTypeValidationData(String pluginId, String propertyName, String parentPropertyName, String typeName) {
            this.pluginId = pluginId;
            this.propertyName = propertyName;
            this.parentPropertyName = parentPropertyName;
            this.typeName = typeName;
        }
    
        @Override
        public String getPluginId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/base/tests/tensorhandle_test.cc

      EXPECT_EQ(tensor.dims(), 0);
      EXPECT_EQ(tensor.dtype(), dtype);
      EXPECT_EQ(*reinterpret_cast<typename TypeParam::type*>(tensor.data()), 42);
      EXPECT_EQ(tensor.num_bytes(), sizeof(typename TypeParam::type));
      EXPECT_EQ(tensor.num_elements(), 1);
    }
    
    template <typename T>
    class Construct1DTensorHandleTest : public ::testing::Test {};
    TYPED_TEST_SUITE(Construct1DTensorHandleTest, SimpleTypes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/types_test.go

    	if !mp.IsMap() {
    		t.Error("map type not identifiable as map")
    	}
    	if mp.TypeName() != "map" {
    		t.Errorf("got %s, wanted map", mp.TypeName())
    	}
    	if mp.DefaultValue() == nil {
    		t.Error("got nil zero value for map type")
    	}
    	if mp.KeyType.TypeName() != "string" {
    		t.Errorf("got %s, wanted key type of string", mp.KeyType.TypeName())
    	}
    	if mp.ElemType.TypeName() != "int" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                        });
                    }
    
                    public static abstract class Extension {
                        private $typeName value;
                        public $typeName getInputProperty() { return value; }
                        public void setInputProperty($typeName value) { this.value = value; }
                    }
    
                    public static abstract class SomeTask extends ${ConventionTask.name} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
      typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>
    ValuesIn(ForwardIterator begin, ForwardIterator end);
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]);
    
    template <class Container>
    internal::ParamGenerator<typename Container::value_type> ValuesIn(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      Renderer &CodeLines(const string &text);
      template <typename... Args>
      Renderer CodeLines(absl::string_view text, const Args &...args) {
        return CodeLines(absl::Substitute(text, args...));
      }
    
      // Indent and append a C++ statement.
      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParseException.java

        }
    
        public MetaDataParseException(String typeName, ExternalResource resource, Throwable cause) {
            super(String.format("Could not parse %s %s", typeName, resource.getDisplayName()), cause);
        }
    
        public MetaDataParseException(String typeName, ExternalResource resource, String details, Throwable cause) {
            super(String.format("Could not parse %s %s: %s", typeName, resource.getDisplayName(), details), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue55889.go

    package p
    
    import _ "unsafe"
    
    //go:linkname nonexistent nonexistent
    
    //go:linkname constant constant
    const constant = 42
    
    //go:linkname typename typename
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 20:35:31 UTC 2022
    - 562 bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/TypeUtils.java

            return PRIMITIVE_TYPES_DEFAULT_VALUES_AS_STRING.getOrDefault(type, "null");
        }
    
        /**
         * Converts an ASM {@link Type} to a JavaPoet {@link TypeName}.
         */
        public static TypeName typeName(Type type) {
            if (type.equals(Type.VOID_TYPE)) {
                return ClassName.VOID;
            }
            if (type.equals(Type.BOOLEAN_TYPE)) {
                return ClassName.BOOLEAN;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 15:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskDetails.java

        static TaskDetails of(Path path, String typeName, @Nullable String description) {
            return new DefaultTaskDetails(path, typeName, description);
        }
    
        final class DefaultTaskDetails implements TaskDetails {
            private final Path path;
            private final String typeName;
            @Nullable private final String description;
    
            private DefaultTaskDetails(Path path, String typeName, @Nullable String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:47:48 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top