Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,448 for constructs (0.18 sec)

  1. guava/src/com/google/common/base/VerifyException.java

    @ElementTypesAreNonnullByDefault
    public class VerifyException extends RuntimeException {
      /** Constructs a {@code VerifyException} with no message. */
      public VerifyException() {}
    
      /** Constructs a {@code VerifyException} with the message {@code message}. */
      public VerifyException(@CheckForNull String message) {
        super(message);
      }
    
      /**
       * Constructs a {@code VerifyException} with the cause {@code cause} and a message that is {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

            this.longMessage = longMessage;
        }
    
        /**
         * Constructs a new {@code MojoException} wrapping an underlying {@code Throwable}
         * and providing a {@code message}.
         */
        public MojoException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new {@code MojoException} providing a {@code message}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/VerifyException.java

    @ElementTypesAreNonnullByDefault
    public class VerifyException extends RuntimeException {
      /** Constructs a {@code VerifyException} with no message. */
      public VerifyException() {}
    
      /** Constructs a {@code VerifyException} with the message {@code message}. */
      public VerifyException(@CheckForNull String message) {
        super(message);
      }
    
      /**
       * Constructs a {@code VerifyException} with the cause {@code cause} and a message that is {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleXmlWriter.java

     */
    public class SimpleXmlWriter extends SimpleMarkupWriter {
        /**
         * Constructs a writer with the given output.
         *
         * @param output The output, should be unbuffered, as this class performs buffering
         */
        public SimpleXmlWriter(OutputStream output) throws IOException {
            this(output, null);
        }
    
        /**
         * Constructs a writer with the given output.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_generic.go

    package crc32
    
    import "internal/byteorder"
    
    // simpleMakeTable allocates and constructs a Table for the specified
    // polynomial. The table is suitable for use with the simple algorithm
    // (simpleUpdate).
    func simpleMakeTable(poly uint32) *Table {
    	t := new(Table)
    	simplePopulateTable(poly, t)
    	return t
    }
    
    // simplePopulateTable constructs a Table for the specified polynomial, suitable
    // for use with simpleUpdate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/internal/pkgbits/doc.go

    // decoding these low-level values, but the details of mapping
    // higher-level Go constructs into elements is left to higher-level
    // abstractions.
    //
    // Elements may cross-reference each other with "relocations." For
    // example, an element representing a pointer type has a relocation
    // referring to the element type.
    //
    // Go constructs may be composed as a constellation of multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 19:01:40 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildParallelIntegrationTest.groovy

                includedBuilds << build
                previousBuild = build
            }
    
            expect:
            execute(buildA, "jar", "--max-workers=1")
        }
    
        def "constructs included build artifacts in parallel"() {
            given:
            server.start()
    
            when:
            def included = ['buildB', 'buildC', 'buildD']
            included.each { buildName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. internal/logger/message/audit/entry.go

    const Version = "1"
    
    // NewEntry - constructs an audit entry object with some fields filled
    func NewEntry(deploymentID string) audit.Entry {
    	return audit.Entry{
    		Version:      Version,
    		DeploymentID: deploymentID,
    		Time:         time.Now().UTC(),
    	}
    }
    
    // ToEntry - constructs an audit entry from a http request
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/tests/tensor_test.cc

    template <typename T>
    class ConstructScalarTensorTest : public ::testing::Test {};
    TYPED_TEST_SUITE(ConstructScalarTensorTest, SimpleTypes);
    
    // This test constructs a scalar tensor for each of the types in "SimpleTypes",
    // and verifies the expected dimensions, dtype, value, number of bytes, and
    // number of elements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. security/pkg/pki/util/crypto.go

    	blockTypeECPrivateKey    = "EC PRIVATE KEY"
    	blockTypeRSAPrivateKey   = "RSA PRIVATE KEY" // PKCS#1 private key
    	blockTypePKCS8PrivateKey = "PRIVATE KEY"     // PKCS#8 plain private key
    )
    
    // ParsePemEncodedCertificate constructs a `x509.Certificate` object using the
    // given a PEM-encoded certificate.
    func ParsePemEncodedCertificate(certBytes []byte) (*x509.Certificate, error) {
    	cb, _ := pem.Decode(certBytes)
    	if cb == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top