Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for individual (0.19 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
      optional int32 nanos = 2;
    }
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    // +k8s:deepcopy-gen=false
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    // minioMetaTmpDeletedBucket + unique uuid,
    // Note that set distribution is ignored so it should only be used in cases where
    // data is not distributed across sets. Errors are logged but individual
    // disk failures are not returned.
    func (z *erasureServerPools) deleteAll(ctx context.Context, bucket, prefix string) {
    	for _, servers := range z.serverPools {
    		for _, set := range servers.sets {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

      // Define the functions
      TF_Function* func;
      TF_Function* grad_func;
      DefineFunction("FooFunc", &func);
      DefineFunction("MyGrad", &grad_func);
    
      // Add functions individually
      TF_GraphCopyFunction(host_graph_, func, nullptr, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      TF_GraphCopyFunction(host_graph_, grad_func, nullptr, s_);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top