Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for corerest (0.33 sec)

  1. tensorflow/compiler/jit/BUILD

            ":xla_gpu_jit",
            "//tensorflow/cc:function_ops",
            "//tensorflow/cc:math_ops",
            "//tensorflow/cc:scope",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core/kernels:ops_testutil",
            "//tensorflow/core/platform:errors",
            "//tensorflow/core/platform:status",
            "//tensorflow/core/platform:status_matchers",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    					t.Fatalf("column id primary key should be correct, name: %v, column: %#v", columnType.Name(),
    						columnType)
    				}
    			case "name":
    				dataType := DB.Dialector.DataTypeOf(stmt.Schema.LookUpField(columnType.Name()))
    				if !strings.Contains(strings.ToUpper(dataType), strings.ToUpper(columnType.DatabaseTypeName())) {
    					t.Fatalf("column name type should be correct, name: %v, length: %v, expects: %v, column: %#v",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@llvm-project//mlir:IR",
        ],
    )
    
    cc_library(
        name = "cost_estimators",
        hdrs = [
            "utils/arithmetic_count_util.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// the evaluator is executed with correct namespace, and returns admit
    	// meaning the params passed was a configmap
    	err := testContext.Plugin.Dispatch(
    		testContext,
    		attributeRecord(nil, configMapParam, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	func() {
    		lock.Lock()
    		defer lock.Unlock()
    		require.ErrorContains(t, err, "correct type")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                    }
                    consumable("foo") {
                        attributes {
                            attribute(Attribute.of('custom', String), "foo")
                            attribute(Attribute.of('attr', String), "correct")
                        }
                        outgoing {
                            artifact(firstZip)
                        }
                    }
                }
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	margin: 0 2px;
    	padding: 0.35em 0.625em 0.75em;
    }
    
    /** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
    legend {
    	border: 0;
    	/* 1 */
    	padding: 0;
    	/* 2 */
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		},
    		1: map[v1.ResourceName]uint64{
    			v1.ResourceMemory: 1 * gb,
    		},
    	}
    	pod := getPod("fakePod1", "fakeContainer1", requirementsGuaranteed)
    	testCases := []testMemoryManager{
    		{
    			description: "Correct allocation and adding container on NUMA 0",
    			policyName:  policyTypeStatic,
    			machineInfo: machineInfo,
    			reserved:    reserved,
    			machineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	testCases := []struct {
    		name   string
    		pods   []*corev1.Pod
    		nodes  []*corev1.Node
    		wantAZ map[*corev1.Pod]string
    	}{
    		{
    			name: "should return correct az for given address",
    			pods: []*corev1.Pod{pod1, pod2},
    			nodes: []*corev1.Node{
    				generateNode("node1", map[string]string{NodeZoneLabel: "zone1", NodeRegionLabel: "region1", label.TopologySubzone.Name: "subzone1"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    		// all list entries on a single line
    		for i, x := range list {
    			if i > 0 {
    				// use position of expression following the comma as
    				// comma position for correct comment placement
    				p.setPos(x.Pos())
    				p.print(token.COMMA, blank)
    			}
    			p.expr0(x, depth)
    		}
    		if isIncomplete {
    			p.print(token.COMMA, blank, "/* "+filteredMsg+" */")
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    						t.Errorf("%g/%g got %s result; want exact result", a, b, acc)
    					}
    				}
    			}
    		}
    	}
    }
    
    // TestFloatArithmeticSpecialValues tests that Float operations produce the
    // correct results for combinations of zero (±0), finite (±1 and ±2.71828),
    // and infinite (±Inf) operands.
    func TestFloatArithmeticSpecialValues(t *testing.T) {
    	zero := 0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top