Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Int32 (0.18 sec)

  1. tensorflow/c/c_api_test.cc

      TF_Tensor* out = csession.output_tensor(0);
      ASSERT_TRUE(out != nullptr);
      EXPECT_EQ(TF_INT32, TF_TensorType(out));
      EXPECT_EQ(0, TF_NumDims(out));  // scalar
      ASSERT_EQ(sizeof(int32), TF_TensorByteSize(out));
      int32* output_contents = static_cast<int32*>(TF_TensorData(out));
      EXPECT_EQ(3 + 2, *output_contents);
    
      // Add another operation to the graph.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. common/scripts/metallb-native.yaml

                    format: int32
                    maximum: 255
                    minimum: 2
                    type: integer
                  echoInterval:
                    description: Configures the minimal echo receive transmission interval
                      that this system is capable of handling in milliseconds. Defaults
                      to 50ms
                    format: int32
                    maximum: 60000
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/coordination/v1/generated.proto

      // leaseDurationSeconds is a duration that candidates for a lease need
      // to wait to force acquire it. This is measure against time of last
      // observed renewTime.
      // +optional
      optional int32 leaseDurationSeconds = 2;
    
      // acquireTime is a time when the current lease was acquired.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime acquireTime = 3;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

      }
      auto pjrt_client = xla::GetCApiClient(DEVICE_CPU);
      CHECK_OK(pjrt_client.status());
      auto c_api_client = down_cast<xla::PjRtCApiClient*>(pjrt_client->get());
      std::vector<int32_t> data(1, 0);
      xla::Shape shape = xla::ShapeUtil::MakeShape(xla::S32, {1});
    
      auto buffer = c_api_client->pjrt_c_client()->client->BufferFromHostBuffer(
          data.data(), shape.element_type(), shape.dimensions(),
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Mon Oct 30 19:20:20 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  5. internal/dsync/drwmutex_test.go

    	doTestParallelReaders(1, 4)
    	doTestParallelReaders(3, 4)
    	doTestParallelReaders(4, 2)
    }
    
    // Borrowed from rwmutex_test.go
    func reader(resource string, numIterations int, activity *int32, cdone chan bool) {
    	rwm := NewDRWMutex(ds, resource)
    	for i := 0; i < numIterations; i++ {
    		if rwm.GetRLock(context.Background(), nil, id, source, Options{Timeout: time.Second}) {
    			n := atomic.AddInt32(activity, 1)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Dec 24 03:49:07 GMT 2022
    - 9.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/events/v1beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time deprecatedLastTimestamp = 14;
    
      // deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.
      // +optional
      optional int32 deprecatedCount = 15;
    }
    
    // EventList is a list of Event objects.
    message EventList {
      // Standard list metadata.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  7. api/go1.3.txt

    pkg syscall (netbsd-386), type Termios struct, Iflag uint32
    pkg syscall (netbsd-386), type Termios struct, Ispeed int32
    pkg syscall (netbsd-386), type Termios struct, Lflag uint32
    pkg syscall (netbsd-386), type Termios struct, Oflag uint32
    pkg syscall (netbsd-386), type Termios struct, Ospeed int32
    pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL = 255
    pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (netbsd-386), type Rusage struct, Inblock int32
    pkg syscall (netbsd-386), type Rusage struct, Isrss int32
    pkg syscall (netbsd-386), type Rusage struct, Ixrss int32
    pkg syscall (netbsd-386), type Rusage struct, Majflt int32
    pkg syscall (netbsd-386), type Rusage struct, Maxrss int32
    pkg syscall (netbsd-386), type Rusage struct, Minflt int32
    pkg syscall (netbsd-386), type Rusage struct, Msgrcv int32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. schema/serializer.go

    	rv := reflect.ValueOf(fieldValue)
    	switch v := fieldValue.(type) {
    	case int64, int, uint, uint64, int32, uint32, int16, uint16:
    		result = time.Unix(reflect.Indirect(rv).Int(), 0).UTC()
    	case *int64, *int, *uint, *uint64, *int32, *uint32, *int16, *uint16:
    		if rv.IsZero() {
    			return nil, nil
    		}
    		result = time.Unix(reflect.Indirect(rv).Int(), 0).UTC()
    	default:
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 18 08:28:46 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/events/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time deprecatedLastTimestamp = 14;
    
      // deprecatedCount is the deprecated field assuring backward compatibility with core.v1 Event type.
      // +optional
      optional int32 deprecatedCount = 15;
    }
    
    // EventList is a list of Event objects.
    message EventList {
      // Standard list metadata.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
Back to top