Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,096 for methods_ (0.35 sec)

  1. src/internal/types/testdata/check/decls4.go

    )
    
    // embedding and lookup of fields and methods
    func _(s struct{A0}) { s.A0 = x0 }
    
    type eX struct{xf int}
    
    func (eX) xm()
    
    type eY = struct{eX} // field/method set of eY includes xf, xm
    
    type eZ = *struct{eX} // field/method set of eZ includes xf, xm
    
    type eA struct {
    	eX // eX contributes xf, xm to eA
    }
    
    type eA2 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     *
     * <h3>Properties</h3>
     * <p>
     * Managed types declare their structure as properties, via getter and setter methods.
     * Getter and setter methods are expected to conform to the well-known Java Bean naming conventions.
     * A read/write “name” property would be expressed via the following methods:
     * <pre>
     * void setName(String name);
     * String getName();
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

        public TestLauncher withJvmTestMethods(String testClass, String... methods) {
            withJvmTestMethods(testClass, Arrays.asList(methods));
            return this;
        }
    
        @Override
        public TestLauncher withJvmTestMethods(final String testClass, Iterable<String> methods) {
            List<InternalJvmTestRequest> newRequests = CollectionUtils.collect(methods, new InternalTransformer<InternalJvmTestRequest, String>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

        Interface for ops that are stateful and need to identify stateful operands.
    
        Stateful operands correspond to TF's variables semantics. An op that has 1
        or more stateful operands is a stateful op.
      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of stateful operands.}],
          "std::vector<int>", "GetStatefulOperands", (ins)
        >,
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/math/big/doc.go

    	func (z *Int) Add(x, y *Int) *Int
    
    Methods of this form typically return the incoming receiver as well, to
    enable simple call chaining.
    
    Methods which don't require a result value to be passed in (for instance,
    [Int.Sign]), simply return the result. In this case, the receiver is typically
    the first operand, named x:
    
    	func (x *Int) Sign() int
    
    Various methods support conversions between strings and corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

     * configurations.
     * <p>
     * This interface also contains a few methods unrelated to deprecation, but which need to be available to
     * other gradle subprojects.  These methods include:
     * <ul>
     *     <li>{@link #preventUsageMutation()}</li>
     *     <li>{@link #setCanBeDeclared(boolean)}</li>
     *     <li>{@link #isCanBeDeclared()}</li>
     * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

     * <p>
     * {@code ReportContainer} implementations are <b>immutable</b> in that standard collection methods such as {@code add()}, {@code remove()}
     * and {@code clear()} will throw an {@link ImmutableViolationException}. However, implementations may provide new methods that allow
     * the addition of new report object and/or the removal of existing report objects.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

    import javax.annotation.Nullable;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.util.Collection;
    
    public interface PropertyDetails {
    
        String getName();
    
        /**
         * The getter methods for a particular type.
         *
         * This list will only ever contain more than one method when there are getter methods with <b>different</b> return types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/ZipTestFixture.groovy

            } finally {
                zipFile.close();
            }
        }
    
        void hasCompression(String relativePath, int compressionMethod) {
            def methods = compressionMethodsByRelativePath.get(relativePath)
            assert methods.size() == 1
            assertThat(methods.get(0), equalTo(compressionMethod))
        }
    
        private void addCompressionMethod(String relativePath, int compressionMethod) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue47968.go

    func (T[P]) m1()
    
    type A1 = T // ERROR "cannot use generic type"
    
    func (A1[P]) m2() {}
    
    type A2 = T[int]
    
    func (A2 /* ERRORx `cannot define new methods on instantiated type (T\[int\]|A2)` */) m3()   {}
    func (_ /* ERRORx `cannot define new methods on instantiated type (T\[int\]|A2)` */ A2) m4() {}
    
    func (T[int]) m5()                                     {} // int is the type parameter name, not an instantiation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 684 bytes
    - Viewed (0)
Back to top