Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for uninstantiable (0.24 sec)

  1. .idea/dictionaries/svyatoslav_kuzmich.xml

          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
          <w>uninstantiable</w>
          <w>unintercepted</w>
          <w>unlinkable</w>
          <w>vtable</w>
          <w>wabt</w>
          <w>xopt</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 12 05:42:01 UTC 2021
    - 594 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

        private static final String UNUSABLE = "This configuration does not allow any usage";
    
        private static final String IS_DEPRECATED = "(but this behavior is marked deprecated)";
    
        private UsageDescriber() { /* not instantiable */ }
    
        /**
         * Builds a human-readable description of the usage allowed by the given role.
         *
         * @param role the role to describe
         * @return a human-readable description of the role's allowed usage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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