Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for relu (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    // works no matter BiggestInt is represented in one's complement or
    // two's complement.
    //
    // We cannot rely on numeric_limits in STL, as __int64 and long long
    // are not part of standard C++ and numeric_limits doesn't need to be
    // defined for them.
    const BiggestInt kMaxBiggestInt =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    			// Allocate an L2 arena map.
    			//
    			// Use sysAllocOS instead of sysAlloc or persistentalloc because there's no
    			// statistic we can comfortably account for this space in. With this structure,
    			// we rely on demand paging to avoid large overheads, but tracking which memory
    			// is paged in is too expensive. Trying to account for the whole region means
    			// that it will appear like an enormous memory overhead in statistics, even though
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    				return fmt.Errorf("error removing backoff record %w", err)
    			}
    			return nil
    		}
    		return err
    	}
    
    	// Skip syncing of the job it is managed by another controller.
    	// We cannot rely solely on skipping of queueing such jobs for synchronization,
    	// because it is possible a synchronization task is queued for a job, without
    	// the managedBy field, but the job is quickly replaced by another job with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	}
    	running.Store(t.name, highPrecisionTimeNow())
    
    	// Instead of reducing the running count of this test before calling the
    	// tRunner and increasing it afterwards, we rely on tRunner keeping the
    	// count correct. This ensures that a sequence of sequential tests runs
    	// without being preempted, even when their parent is a parallel test. This
    	// may especially reduce surprises if *parallel == 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                        double val1, double val2);
    
    
    #if GTEST_OS_WINDOWS
    
    // Macros that test for HRESULT failure and success, these are only useful
    // on Windows, and rely on Windows SDK macros and APIs to compile.
    //
    //    * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)
    //
    // When expr unexpectedly fails or succeeds, Google Test prints the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                                        double val1, double val2);
    
    
    #if GTEST_OS_WINDOWS
    
    // Macros that test for HRESULT failure and success, these are only useful
    // on Windows, and rely on Windows SDK macros and APIs to compile.
    //
    //    * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)
    //
    // When expr unexpectedly fails or succeeds, Google Test prints the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// serialization.
    	// Servers older than v1.15 do not set this field.
    	// The intended use of the remainingItemCount is *estimating* the size of a collection. Clients
    	// should not rely on the remainingItemCount to be set or to be exact.
    	// +optional
    	RemainingItemCount *int64 `json:"remainingItemCount,omitempty" protobuf:"bytes,4,opt,name=remainingItemCount"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
Back to top