Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 673 for constructs (0.17 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. pkg/kubeapiserver/admission/initializer.go

    type PluginInitializer struct {
    	cloudConfig []byte
    }
    
    var _ admission.PluginInitializer = &PluginInitializer{}
    
    // NewPluginInitializer constructs new instance of PluginInitializer
    func NewPluginInitializer(cloudConfig []byte) *PluginInitializer {
    	return &PluginInitializer{
    		cloudConfig: cloudConfig,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containeruser.go

    // with apply.
    type ContainerUserApplyConfiguration struct {
    	Linux *LinuxContainerUserApplyConfiguration `json:"linux,omitempty"`
    }
    
    // ContainerUserApplyConfiguration constructs an declarative configuration of the ContainerUser type for use with
    // apply.
    func ContainerUser() *ContainerUserApplyConfiguration {
    	return &ContainerUserApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/admission/initializer.go

    type PluginInitializer struct {
    	quotaConfiguration         quota.Configuration
    	excludedAdmissionResources []schema.GroupResource
    }
    
    var _ admission.PluginInitializer = &PluginInitializer{}
    
    // NewPluginInitializer constructs new instance of PluginInitializer
    func NewPluginInitializer(
    	quotaConfiguration quota.Configuration,
    	excludedAdmissionResources []schema.GroupResource,
    ) *PluginInitializer {
    	return &PluginInitializer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top