Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,156 for constructs (0.15 sec)

  1. 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)
  2. 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)
  3. tensorflow/cc/experimental/libtf/value.h

      /// TaggedValue constructor for type FLOAT32.
      explicit TaggedValue(float f32) : type_(FLOAT32), data_(Float32(f32)) {}
      /// TaggedValue constructor for type INT64.
      explicit TaggedValue(int64_t i64) : type_(INT64), data_(Int64(i64)) {}
      /// TaggedValue constructor for type FLOAT32.
      explicit TaggedValue(Float32 f32) : type_(FLOAT32), data_(f32) {}
      /// TaggedValue constructor for type INT64.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/cc/experimental/base/tests/tensorhandle_test.cc

    template <typename T>
    class ConstructScalarTensorHandleTest : public ::testing::Test {};
    TYPED_TEST_SUITE(ConstructScalarTensorHandleTest, SimpleTypes);
    
    // This test constructs a scalar tensor for each of the types in "SimpleTypes",
    // then wraps it in a TensorHandle. We then unwrap it back into a Tensor, and
    // verify the expected dims, dtype, value, num bytes, and num elements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pilot/pkg/security/model/authentication.go

    	// entire listener/cluster in these cases.
    	ResourceApiVersion: core.ApiVersion_V3,
    }
    
    // ConstructSdsSecretConfigForCredential constructs SDS secret configuration used
    // from certificates referenced by credentialName in DestinationRule or Gateway.
    // Currently this is served by a local SDS server, but in the future replaced by
    // Istiod SDS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_git_missing_tree.txt

    # Regression test for https://go.dev/issue/65339.
    # Unnecessary git tree object required
    
    [short] skip 'constructs a local git repo'
    [!git] skip
    
    env GIT_AUTHOR_NAME='Go Gopher'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    # Create 2 commit
    env GIT_COMMITTER_DATE=2024-01-30T10:52:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:52:00+08:00
    
    cd $WORK/repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/OneSizeTestContainerGenerator.java

     * particular {@link CollectionSize}.
     *
     * <p>This interface should not be implemented outside this package; {@link
     * PerCollectionSizeTestSuiteBuilder} constructs instances of it from a more general {@link
     * TestCollectionGenerator}.
     *
     * @author George van den Driessche
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top