Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 621 for methods_ (1.24 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

            Method[] methods = type.getDeclaredMethods();
            // Make sure getters end up before the setters
            Arrays.sort(methods, comparing(Method::getName));
            for (Method method : methods) {
                processMethodAnnotations(method, methodBuilders, validationContext);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

      /**
       * Verifies that a collection is immutable.
       *
       * <p>A collection is considered immutable if:
       *
       * <ol>
       *   <li>All its mutation methods result in UnsupportedOperationException, and do not change the
       *       underlying contents.
       *   <li>All methods that return objects that can indirectly mutate the collection throw
       *       UnsupportedOperationException when those mutators are called.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

      /**
       * Verifies that a collection is immutable.
       *
       * <p>A collection is considered immutable if:
       *
       * <ol>
       *   <li>All its mutation methods result in UnsupportedOperationException, and do not change the
       *       underlying contents.
       *   <li>All methods that return objects that can indirectly mutate the collection throw
       *       UnsupportedOperationException when those mutators are called.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * Subtypes can mark methods to be ignored by using an ignore annotation.
     * Ignored methods don't inherit super-type annotations.
     * </p>
     *
     * <strong>Boolean properties</strong>
     *
     * <p>
     * In JavaBeans, {@code boolean} properties are allowed to be accessed both via {@code is}-getters and {@code get}-getters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/go/types/subst.go

    			//
    			// In this case the interface will not be substituted here, because its
    			// method signatures do not depend on the type parameter P, but we still
    			// need to create new interface methods to hold the instantiated
    			// receiver. This is handled by Named.expandUnderlying.
    			iface.methods, _ = replaceRecvType(methods, t, iface)
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    )
    
    // Volume represents a directory used by pods or hosts on a node. All method
    // implementations of methods in the volume interface must be idempotent.
    type Volume interface {
    	// GetPath returns the path to which the volume should be mounted for the
    	// pod.
    	GetPath() string
    
    	// MetricsProvider embeds methods for exposing metrics (e.g.
    	// used, available space).
    	MetricsProvider
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    			//
    			// In this case the interface will not be substituted here, because its
    			// method signatures do not depend on the type parameter P, but we still
    			// need to create new interface methods to hold the instantiated
    			// receiver. This is handled by Named.expandUnderlying.
    			iface.methods, _ = replaceRecvType(methods, t, iface)
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_utils.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    // The following methods are introduced to resolve op builtin code shortage
    // problem. The new builtin operator will be assigned to the extended builtin
    // code field in the flatbuffer schema. Those methods helps to hide builtin code
    // details.
    BuiltinOperator GetBuiltinCode(const OperatorCode *op_code);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls0.go

    func (S0) m4 () (x *S0.m4 /* ERROR "S0.m4 is not a type" */ ) { return }
    
    // interfaces may not have any blank methods
    type BlankI interface {
    	_ /* ERROR "methods must have a unique non-blank name" */ ()
    	_ /* ERROR "methods must have a unique non-blank name" */ (float32) int
    	m()
    }
    
    // non-interface types may have multiple blank methods
    type BlankT struct{}
    
    func (BlankT) _() {}
    func (BlankT) _(int) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                val methods = psiElements.filterIsInstance<PsiMethod>()
                when (fir) {
                    is FirFunction -> methods.singleOrNull { it.isConstructor == fir is FirConstructor }?.let {
                        bindings.put(
                            METHOD_FOR_FIR_FUNCTION,
                            fir,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top