Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uninstantiable (0.19 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * The type tokens indicate the type of details and result objects associated with operations of this type.
     * The type token should be a non-instantiable and non extensible class.
     *
     * The producer side APIs in Gradle do not currently enforce (at compile-time or run-time) details or result types.
     * Over time, they will be evolved to enforce usage of correct types.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/go/types/mono.go

    func (w *monoGraph) assign(pkg *Package, pos token.Pos, tpar *TypeParam, targ Type) {
    	// Go generics do not have an analog to C++`s template-templates,
    	// where a template parameter can itself be an instantiable
    	// template. So any instantiation cycles must occur within a single
    	// package. Accordingly, we can ignore instantiations of imported
    	// type parameters.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/mono.go

    func (w *monoGraph) assign(pkg *Package, pos syntax.Pos, tpar *TypeParam, targ Type) {
    	// Go generics do not have an analog to C++`s template-templates,
    	// where a template parameter can itself be an instantiable
    	// template. So any instantiation cycles must occur within a single
    	// package. Accordingly, we can ignore instantiations of imported
    	// type parameters.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/PredicatesTest.java

            @Override
            public boolean apply(@Nullable Integer i) {
              throw new AssertionFailedError("This predicate should never have been evaluated");
            }
          };
    
      /** Instantiable predicate with reasonable hashCode() and equals() methods. */
      static class IsOdd implements Predicate<@Nullable Integer>, Serializable {
        private static final long serialVersionUID = 0x150ddL;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/PredicatesTest.java

            @Override
            public boolean apply(@Nullable Integer i) {
              throw new AssertionFailedError("This predicate should never have been evaluated");
            }
          };
    
      /** Instantiable predicate with reasonable hashCode() and equals() methods. */
      static class IsOdd implements Predicate<@Nullable Integer>, Serializable {
        private static final long serialVersionUID = 0x150ddL;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top