Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for 3xcomplex (3.73 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

     * Restructuring your build logic towards Gradle best practices and switching to Kotlin DSL as part of that effort
    
    Both approaches are viable.
    A mechanical migration will be enough for simple builds.
    A complex and highly dynamic build may require some restructuring anyway, so in such cases reimplementing build logic to follow Gradle best practice makes sense.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/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: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/sql-databases.md

    ### Dependencies with `yield` or middleware
    
    Adding a **middleware** here is similar to what a dependency with `yield` does, with some differences:
    
    * It requires more code and is a bit more complex.
    * The middleware has to be an `async` function.
        * If there is code in it that has to "wait" for the network, it could "block" your application there and degrade performance a bit.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types_test.go

    		resourceList v1.ResourceList
    		expected     *Resource
    	}{
    		{
    			name:         "empty resource",
    			resourceList: map[v1.ResourceName]resource.Quantity{},
    			expected:     &Resource{},
    		},
    		{
    			name: "complex resource",
    			resourceList: map[v1.ResourceName]resource.Quantity{
    				v1.ResourceCPU:                      *resource.NewScaledQuantity(4, -3),
    				v1.ResourceMemory:                   *resource.NewQuantity(2000, resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K 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. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    === Minimizing the use of external libraries
    
    Using external libraries in your Gradle projects can bring great convenience, but be aware that they can introduce complex dependency graphs.
    Gradle's `buildEnvironment` task can help you visualize these dependencies, including those of your plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top