Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Ctor (0.16 sec)

  1. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        }
      }
    
      /**
       * Verifies that {@code ctor} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} whenever <i>any</i> of its non-nullable parameters are null.
       */
      public void testConstructor(Constructor<?> ctor) {
        Class<?> declaringClass = ctor.getDeclaringClass();
        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 23.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        }
      }
    
      /**
       * Verifies that {@code ctor} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} whenever <i>any</i> of its non-nullable parameters are null.
       */
      public void testConstructor(Constructor<?> ctor) {
        Class<?> declaringClass = ctor.getDeclaringClass();
        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 22.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            this.lifecycleDebugLogger = lifecycleDebugLogger;
            this.lifeCycleExecutionPlanCalculator = lifeCycleExecutionPlanCalculator;
            this.eventCatapult = eventCatapult;
        }
    
        /**
         * Ctor needed for UT.
         */
        BuilderCommon(
                LifecycleDebugLogger lifecycleDebugLogger,
                LifecycleExecutionPlanCalculator lifeCycleExecutionPlanCalculator,
                ExecutionEventCatapult eventCatapult,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  4. .cm/plugins/filters/byCodeowner/ignore/index.js

        const regex = makeRegex(pattern, ignoreCase)
    
        return new IgnoreRule(
            origin,
            pattern,
            negative,
            regex
        )
    }
    
    const throwError = (message, Ctor) => {
        throw new Ctor(message)
    }
    
    const checkPath = (path, originalPath, doThrow) => {
        if (!isString(path)) {
            return doThrow(
                `path must be a string, but got \`${originalPath}\``,
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  5. tensorflow/c/eager/tape.h

          gtl::ArraySlice<Gradient*> output_gradients, absl::Span<Gradient*> result,
          bool build_default_zeros_grads = true);
    
      // Whether the tape is persistent. See ctor for detailed description.
      bool IsPersistent() const { return persistent_; }
    
     private:
      TensorTape tensor_tape_;
      OpTape<BackwardFunction, TapeTensor> op_tape_;
      int64_t next_op_id_{0};
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  6. CHANGELOG.md

        ```kotlin
        implementation("com.squareup.okio:okio:2.9.0")
        ```
    
    Note that this was originally released on 2020-10-06 as 4.10.0-RC1. The only change from that
    release is the version name.
    
    
    [Ktor]: https://ktor.io/
    [assertk]: https://github.com/willowtreeapps/assertk
    [graalvm]: https://www.graalvm.org/
    [graalvm_21]: https://www.graalvm.org/release-notes/21_0/
    [graalvm_22]: https://www.graalvm.org/release-notes/22_2/
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 18 01:31:39 GMT 2024
    - 21.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilter.java

        DataOutputStream dout = new DataOutputStream(out);
        dout.writeByte(SignedBytes.checkedCast(strategy.ordinal()));
        dout.writeByte(UnsignedBytes.checkedCast(numHashFunctions)); // note: checked at the c'tor
        dout.writeInt(bits.data.length());
        for (int i = 0; i < bits.data.length(); i++) {
          dout.writeLong(bits.data.get(i));
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  8. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    static.observableuserconten.com station.museum stavanger.no stavern.no stc stcgroup steam.museum steiermark.museum steigen.no steinkjer.no sth.ac.at stjohn.museum stjordal.no stjordalshalsen.no stjørdal.no stjørdalshalsen.no stockholm stockholm.museum stokke.no stor-elvdal.no storage storage.yandexcloud.net stord.no stordal.no store store.bb store.dk store.nf store.ro store.st store.ve storebase.store storfjord.no storj.farm stpetersburg.museum strand.no stranda.no stream streamlit.app streamlitapp.com stripper.jp...
    Others
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
Back to top