Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for constructorsOf (0.19 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                !is KaDeclarationSymbol -> {
                    // File, package, etc.
                    return false
                }
    
                is KaSamConstructorSymbol -> {
                    // SAM constructors are always top-level
                    return false
                }
    
                is KaScriptSymbol -> {
                    // Scripts are always top-level
                    return false
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

    /// @{
    
    /// A `Scope` object represents a set of related TensorFlow ops that have the
    /// same properties such as a common name prefix.
    ///
    /// A Scope object is a container for TensorFlow Op properties. Op constructors
    /// get a Scope object as a mandatory first argument and the constructed op
    /// acquires the properties in the object.
    ///
    /// A simple example:
    ///
    ///     using namespace ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/goboringcrypto.h

    #include <stdlib.h> // size_t
    #include <stdint.h> // uint8_t
    
    // This symbol is hidden in BoringCrypto and marked as a constructor,
    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

      private static Map<String, String> toHashMap(Entry<String, String>[] entries) {
        return populate(new HashMap<String, String>(), entries);
      }
    
      // TODO: call conversion constructors or factory methods instead of using
      // populate() on an empty map
      private static <T, M extends Map<T, String>> M populate(M map, Entry<T, String>[] entries) {
        for (Entry<T, String> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. JavadocStyleGuide.md

    | 1  | `@param`      | Methods and constructors only                                                  | Include this if applicable                                                                                                                                                                 ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

        private final Collection<TypeConverterBinding> typeConverterBindings;
    
        // ----------------------------------------------------------------------
        // Constructors
        // ----------------------------------------------------------------------
    
        @Inject
        PlexusXmlBeanConverter(final Injector injector) {
            typeConverterBindings = injector.getTypeConverterBindings();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519.go

    		}
    	}
    }
    
    type projCached struct {
    	YplusX, YminusX, Z, T2d field.Element
    }
    
    type affineCached struct {
    	YplusX, YminusX, T2d field.Element
    }
    
    // Constructors.
    
    func (v *projP2) Zero() *projP2 {
    	v.X.Zero()
    	v.Y.One()
    	v.Z.One()
    	return v
    }
    
    // identity is the point at infinity.
    var identity, _ = new(Point).SetBytes([]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        @Override
        protected void realRun() {
          try {
            delay(LONG_DELAY_MS);
          } catch (InterruptedException ok) {
          }
        }
      }
    
      /** For use as ThreadFactory in constructors */
      public static class SimpleThreadFactory implements ThreadFactory {
        @Override
        public Thread newThread(Runnable r) {
          return new Thread(r);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

      private static Map<String, String> toHashMap(Entry<String, String>[] entries) {
        return populate(new HashMap<String, String>(), entries);
      }
    
      // TODO: call conversion constructors or factory methods instead of using
      // populate() on an empty map
      private static <T, M extends Map<T, String>> M populate(M map, Entry<T, String>[] entries) {
        for (Entry<T, String> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                if (owner.equals(memberToFind.getOwner())) {
                    return Optional.of(memberToFind);
                }
    
                // only methods can be overridden, while constructors and fields are always referenced directly
                if (memberToFind instanceof JavaMethod) {
                    String[] parameterFqNames = ((JavaMethod) memberToFind).getParameters().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top