Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for constructorsOf (0.54 sec)

  1. guava/src/com/google/common/collect/ImmutableMultisetGwtSerializationDependencies.java

     * starting to sound harder than taking the superclass approach, which I've been coming to like,
     * anyway, since it doesn't require us to declare dummy methods (though occasionally constructors)
     * and make types non-final.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h

      kStaticRangePtqToAll,           // static-range-ptq-to-all
      kStaticRangePtqToComputeHeavy,  // static-range-ptq-to-compute-heavy
    };
    
    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

                    return null;
                }
                if (member instanceof JApiConstructor) {
                    if (isInject((JApiConstructor) member)) {
                        // We do not consider injecting constructors public API
                        return null;
                    }
                }
                for (JApiCompatibilityChange change : member.getCompatibilityChanges()) {
                    if (IGNORED_CHANGE_TYPES.contains(change)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkAction.java

     * </pre>
     *
     * Implementations of WorkAction are subject to the following constraints:
     * <ul>
     *     <li>Do not implement {@link #getParameters()} in your class, the method will be implemented by Gradle.</li>
     *     <li>Constructors must be annotated with {@link Inject}.</li>
     * </ul>
     *
     * @param <T> Parameter type for the work action. Should be {@link WorkParameters.None} if the action does not have parameters.
     * @since 5.6
     **/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryExtensionsIntegrationTest.groovy

            assert myExtensible.extensions.thing.value == "bar"
    """
    
            expect:
            succeeds "help"
        }
    
        def "extension container of created DSL object can create type with multiple constructors not annotated"() {
            given:
            buildFile """
            class Thing {
                Thing() {}
                Thing(String foo) {}
            }
    
            class MyExtensible {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. src/go/doc/testdata/generics.0.golden

    	}
    
    	// Parameterized types should be shown. 
    	type Type[P any] struct {
    		Field P
    	}
    
    	// Variables with an instantiated type should be shown. 
    	var X Type[int]
    
    	// Constructors for parameterized types should be shown. 
    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. src/go/doc/testdata/generics.2.golden

    	}
    
    	// Parameterized types should be shown. 
    	type Type[P any] struct {
    		Field P
    	}
    
    	// Variables with an instantiated type should be shown. 
    	var X Type[int]
    
    	// Constructors for parameterized types should be shown. 
    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ImportOptimizer.kt

            if (!parentClassifier.canBeReferencedViaImport()) return false
    
            return when (this) {
                is ConstructorDescriptor -> !parentClassifier.isInner // inner class constructors can't be referenced via import
                is ClassDescriptor, is TypeAliasDescriptor -> true
                else -> parentClassifier is ClassDescriptor && parentClassifier.kind == ClassKind.OBJECT
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolverTest.java

    /**
     * Tests <code>FarthestConflictResolver</code>.
     *
     * @see FarthestConflictResolver
     */
    @Deprecated
    class FarthestConflictResolverTest extends AbstractConflictResolverTest {
        // constructors -----------------------------------------------------------
    
        public FarthestConflictResolverTest() throws Exception {
            super("farthest");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolverTest.java

    /**
     * Tests <code>NewestConflictResolver</code>.
     *
     * @see NewestConflictResolver
     */
    @Deprecated
    class NewestConflictResolverTest extends AbstractConflictResolverTest {
        // constructors -----------------------------------------------------------
    
        public NewestConflictResolverTest() throws Exception {
            super("newest");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top