Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for typeName (0.21 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases.go

    // for the types.Alias type representation added in 1.22.
    // This defines placeholders for x/tools until 1.26.
    
    // NewAlias creates a new TypeName in Package pkg that
    // is an alias for the type rhs.
    //
    // The enabled parameter determines whether the resulting [TypeName]'s
    // type is an [types.Alias]. Its value must be the result of a call to
    // [Enabled], which computes the effective value of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/JavadocUtils.java

            if (parameterInfo.getKind() == ParameterKindInfo.VARARG_METHOD_PARAMETER && renderVararg) {
                return CodeBlock.of("$T...", typeName(parameterInfo.getParameterType().getElementType()));
            }
            return CodeBlock.of("$T", typeName(parameterInfo.getParameterType()));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryInitializer.java

        }
    
        public <T extends NativeLibraryBinary> void createNativeBinary(Class<T> type, String typeName, PrebuiltLibrary library, NativePlatform platform, BuildType buildType, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            String name = getName(typeName, library, platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    #if GTEST_OS_SYMBIAN
      // Streams a value (either a pointer or not) to this object.
      template <typename T>
      inline Message& operator <<(const T& value) {
        StreamHelper(typename internal::is_pointer<T>::type(), value);
        return *this;
      }
    #else
      // Streams a non-pointer value to this object.
      template <typename T>
      inline Message& operator <<(const T& val) {
        // Some libraries overload << for STL containers.  These
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilderTest.groovy

                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
            DefaultTypeAwareProblemBuilder.introductionFor(Optional.of(data), true) == "Property 'bar' "
        }
    
        def "render introduction with type"() {
            given:
            def data = DefaultTypeValidationData.builder()
                .typeName("foo")
                .propertyName("bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

        private String reason
        private List<String> solutions = []
    
        ValidationMessageDisplayConfiguration(ValidationMessageChecker checker) {
            this.checker = checker
        }
    
        String typeName
        String property
        String propertyType
        String section
        String documentationId = "validation_problems"
        boolean includeLink = false
    
        T inPlugin(String pluginId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h

    // Mutates all `NodeDef`s in `graph_def` by applying `func`. It modifies the
    // top-level `NodeDef`s as well as all `NodeDef`s in the function library.
    // `func` should accept a `NodeDef` reference.
    template <typename FuncT, typename = std::enable_if_t<std::is_invocable_r_v<
                                  void, FuncT, tensorflow::NodeDef&>>>
    void MutateNodeDefs(tensorflow::GraphDef& graph_def, FuncT&& func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 28 18:38:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    	celObjectType *types.Type
    	celTypeType   *types.Type
    }
    
    func (r *TypeRef) HasTrait(trait int) bool {
    	return common.ObjectTraits|trait != 0
    }
    
    // TypeName returns the name of this TypeRef.
    func (r *TypeRef) TypeName() string {
    	return r.celObjectType.TypeName()
    }
    
    // Val returns an instance given the fields.
    func (r *TypeRef) Val(fields map[string]ref.Val) ref.Val {
    	return common.NewObjectVal(r, fields)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/internal/reflectlite/reflect_mirror_test.go

    	}
    
    	for typName := range r.m {
    		if len(r.m[typName]) != len(rl.m[typName]) {
    			t.Errorf("type %s number of fields mismatch, reflect: %d, reflectlite: %d", typName, len(r.m[typName]), len(rl.m[typName]))
    			continue
    		}
    		for field := range r.m[typName] {
    			if _, ok := rl.m[typName][field]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 21:11:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

        )
    
    
    internal
    data class JavaFunction<out ParameterType>(
        val typeName: String,
        val name: String,
        val parameterTypes: List<ParameterType>,
        val isVararg: Boolean,
    ) {
        fun <T> map(transform: (ParameterType) -> T): JavaFunction<T> =
            JavaFunction(
                typeName, name, parameterTypes.map(transform), isVararg
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top