Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 395 for subTable (0.14 sec)

  1. android/guava/src/com/google/common/collect/StandardRowSortedTable.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V>
        implements RowSortedTable<R, C, V> {
      /*
       * TODO(jlevy): Consider adding headTable, tailTable, and subTable methods,
       * which return a Table view with rows keys in a given range. Create a
       * RowSortedTable subinterface with the revised methods?
       */
    
      StandardRowSortedTable(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/StandardRowSortedTable.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V>
        implements RowSortedTable<R, C, V> {
      /*
       * TODO(jlevy): Consider adding headTable, tailTable, and subTable methods,
       * which return a Table view with rows keys in a given range. Create a
       * RowSortedTable subinterface with the revised methods?
       */
    
      StandardRowSortedTable(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_generic.go

    // 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.
    func simplePopulateTable(poly uint32, t *Table) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/cipher/example_test.go

    func ExampleNewGCM_encrypt() {
    	// Load your secret key from a safe place and reuse it across multiple
    	// Seal/Open calls. (Obviously don't use this example key for anything
    	// real.) If you want to convert a passphrase to a key, use a suitable
    	// package like bcrypt or scrypt.
    	// When decoded the key should be 16 bytes (AES-128) or 32 (AES-256).
    	key, _ := hex.DecodeString("6368616e676520746869732070617373776f726420746f206120736563726574")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  5. pkg/apis/resource/namedresources.go

    	Strings []string
    }
    
    // NamedResourcesRequest is used in ResourceRequestModel.
    type NamedResourcesRequest struct {
    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // Package policy is for any kind of policy object.  Suitable examples, even if
    // they aren't all here, are PodDisruptionBudget,
    // NetworkPolicy, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 890 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1beta1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // Package policy is for any kind of policy object.  Suitable examples, even if
    // they aren't all here, are PodDisruptionBudget,
    // NetworkPolicy, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 900 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/test_utils.h

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace testing {
    
    // Creates a DeviceMgr suitable for local tests.
    std::unique_ptr<StaticDeviceMgr> CreateTestingDeviceMgr();
    
    // Creates an EagerContext suitable for local tests. Does not take ownership
    // of `device_mgr`.
    EagerContextPtr CreateTestingEagerContext(DeviceMgr* device_mgr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    The choice between script, precompiled script, or binary plugins depends on your specific requirements and preferences.
    
    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/internal/poll/fd_opendir_darwin.go

    // license that can be found in the LICENSE file.
    
    package poll
    
    import (
    	"syscall"
    	_ "unsafe" // for go:linkname
    )
    
    // OpenDir returns a pointer to a DIR structure suitable for
    // ReadDir. In case of an error, the name of the failed
    // syscall is returned along with a syscall.Errno.
    func (fd *FD) OpenDir() (uintptr, string, error) {
    	// fdopendir(3) takes control of the file descriptor,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 918 bytes
    - Viewed (0)
Back to top