Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for GoUint (0.16 sec)

  1. src/cmd/cgo/out.go

      at least with matching size of GoInt.
    */
    typedef char _check_for_GOINTBITS_bit_pointer_matching_GoInt[sizeof(void*)==GOINTBITS/8 ? 1:-1];
    
    #ifndef GO_CGO_GOSTRING_TYPEDEF
    typedef _GoString_ GoString;
    #endif
    typedef void *GoMap;
    typedef void *GoChan;
    typedef struct { void *t; void *v; } GoInterface;
    typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
    
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %2 = stablehlo.constant  // Input 1 inverse scale 1 / s1.
    // %3 = stablehlo.constant  // Input 1 zero point z1 (i8).
    // %4 = stablehlo.constant  // Input 1 zero point z1 (i32).
    // %5 = stablehlo.constant  // Input 2 inverse scale 1 / s2.
    // %6 = stablehlo.constant  // Input 2 zero point z2 (i8).
    // %7 = stablehlo.constant  // Input 2 zero point z2 (i32).
    // %8 = stablehlo.constant  // Input 3 inverse scale 1 / s3.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # include <sys/stat.h>
    #endif  // !_WIN32_WCE
    
    #if defined __APPLE__
    # include <AvailabilityMacros.h>
    # include <TargetConditionals.h>
    #endif
    
    #include <iostream>  // NOLINT
    #include <sstream>  // NOLINT
    #include <string>  // NOLINT
    
    #define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com"
    #define GTEST_FLAG_PREFIX_ "gtest_"
    #define GTEST_FLAG_PREFIX_DASH_ "gtest-"
    #define GTEST_FLAG_PREFIX_UPPER_ "GTEST_"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # include <sys/stat.h>
    #endif  // !_WIN32_WCE
    
    #if defined __APPLE__
    # include <AvailabilityMacros.h>
    # include <TargetConditionals.h>
    #endif
    
    #include <iostream>  // NOLINT
    #include <sstream>  // NOLINT
    #include <string>  // NOLINT
    
    #define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com"
    #define GTEST_FLAG_PREFIX_ "gtest_"
    #define GTEST_FLAG_PREFIX_DASH_ "gtest-"
    #define GTEST_FLAG_PREFIX_UPPER_ "GTEST_"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    // `proto` must point to an array of `proto_len` bytes representing a
    // binary-serialized TensorShapeProto.
    TF_CAPI_EXPORT extern void TF_SetAttrTensorShapeProto(
        TF_OperationDescription* desc, const char* attr_name, const void* proto,
        size_t proto_len, TF_Status* status);
    // `protos` and `proto_lens` must point to arrays of length `num_shapes`.
    // `protos[i]` must point to an array of `proto_lens[i]` bytes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    	vs *clientnetworking.VirtualService, svc corev1.Service, matchingSubsets []string, nonmatchingSubsets []string, dr *clientnetworking.DestinationRule,
    ) { // nolint: lll
    	fmt.Fprintf(writer, "%sVirtualService: %s\n", printSpaces(initPrintNum+printLevel0), kname(vs.ObjectMeta))
    
    	// There is no point in checking that 'port' uses HTTP (for HTTP route matches)
    	// or uses TCP (for TCP route matches) because if the port has the wrong name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    // is returned as a floating point value; if a floating point value can be
    // represented as an integer (such as 1.0) it is returned as an integer value.
    // This ensures that constants of different kind but equal value (such as
    // 1.0 + 0i, 1.0, 1) result in the same value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    				Level1b: 9,
    				Level1c: 10,
    				Level1d: 11,
    				Level1e: 12,
    			},
    			Loop: Loop{
    				Loop1: 13,
    				Loop2: 14,
    			},
    			Embed0p: Embed0p{
    				Point: image.Point{X: 15, Y: 16},
    			},
    			Embed0q: Embed0q{
    				Point: Point{Z: 17},
    			},
    			embed: embed{
    				Q: 18,
    			},
    		},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"hello": 1}`,
    		ptr:      new(Ambig),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	// signal a completion point.
    	incnwait := atomic.Xadd(&work.nwait, +1)
    	if incnwait > work.nproc {
    		println("runtime: work.nwait=", incnwait,
    			"work.nproc=", work.nproc)
    		throw("work.nwait > work.nproc")
    	}
    
    	if incnwait == work.nproc && !gcMarkWorkAvailable(nil) {
    		// This has reached a background completion point. Set
    		// gp.param to a non-nil value to indicate this. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///   1. Opaque plugin private data structures and wrappers for type safety;
    ///   2. Function tables for plugin functionality;
    ///   3. Versioning metadata;
    ///   4. Plugin registration API and the DSO entry point.
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    /// SECTION 1. Opaque data structures to hold plugin specific data
    /// ----------------------------------------------------------------------------
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top