Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for 3xcomplex (1.39 sec)

  1. src/testing/benchmark.go

    		b.startBytes = memStats.TotalAlloc
    		b.start = highPrecisionTimeNow()
    		b.timerOn = true
    	}
    }
    
    // StopTimer stops timing a test. This can be used to pause the timer
    // while performing complex initialization that you don't
    // want to measure.
    func (b *B) StopTimer() {
    	if b.timerOn {
    		b.duration += highPrecisionTimeSince(b.start)
    		runtime.ReadMemStats(&memStats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Let's take a concrete example: your build script uses a generic `NpmTask` task to create a JavaScript bundle by delegating to NPM (and running `npm run bundle`).
    This process is similar to a complex compilation task, but `NpmTask` is too generic to be cacheable by default: it just takes arguments and runs npm with those arguments.
    
    The inputs and outputs of this task are simple to figure out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// Must be a JSON Path under `.status` or `.spec`.
    	// Must be set to work with HorizontalPodAutoscaler.
    	// The field pointed by this JSON path must be a string field (not a complex selector struct)
    	// which contains a serialized label selector in string form.
    	// More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    	"uint16":     true,
    	"uint32":     true,
    	"uint64":     true,
    	"uintptr":    true,
    }
    
    var predeclaredFuncs = map[string]bool{
    	"append":  true,
    	"cap":     true,
    	"close":   true,
    	"complex": true,
    	"copy":    true,
    	"delete":  true,
    	"imag":    true,
    	"len":     true,
    	"make":    true,
    	"new":     true,
    	"panic":   true,
    	"print":   true,
    	"println": true,
    	"real":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    		pos := p.pos()
    		p.next()
    		switch p.tok {
    		case _Name:
    			// We may have an array type or a type parameter list.
    			// In either case we expect an expression x (which may
    			// just be a name, or a more complex expression) which
    			// we can analyze further.
    			//
    			// A type parameter list may have a type bound starting
    			// with a "[" as in: P []E. In that case, simply parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       (In simple cases, callers can avoid this by registering all tasks with the same {@link
       *       MoreExecutors#newSequentialExecutor} wrapper around {@code directExecutor()}. More
       *       complex cases may require using thread pools or making deeper changes.)
       *   <li>If an exception propagates out of a {@code Runnable}, it is not necessarily seen by any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. src/go/types/issues_test.go

    		val string
    	}{
    		{"bool", "false"},
    		{"int", "-1"},
    		{"uint", "1.0"},
    		{"rune", "'a'"},
    		{"float64", "3.5"},
    		{"complex64", "1.25"},
    		{"string", "\"foo\""},
    
    		// some more complex constraints
    		{"~byte", "1"},
    		{"~int | ~float64 | complex128", "1"},
    		{"~uint64 | ~rune", "'X'"},
    	}
    
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    // constant folding opportunities from the extra ops can be exploited by the
    // constant folding support for the TensorFlow ops.
    
    #include <algorithm>
    #include <climits>
    #include <complex>
    #include <cstdint>
    #include <utility>
    
    #include "llvm/ADT/APInt.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/Hashing.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Threading.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(invalidError("optional")),
    				matchesAll(invalidError("orValue")),
    			},
    		},
    		{
    			name: "optional complex transition rule type checking",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

    	VkDeviceCreateInfo *a4, VkDeviceCreateInfo *a5, VkDeviceCreateInfo *a6, VkDeviceCreateInfo *a7
    ) {}
    
    // complex alignment
    
    struct {
    	float x;
    	_Complex float y;
    } cplxAlign = { 3.14, 2.17 };
    
    // constants and pointer checking
    
    #define CheckConstVal 0
    
    typedef struct {
    	int *p;
    } CheckConstStruct;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top