Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Res (0.14 sec)

  1. cmd/object-handlers_test.go

    	// That's why NewMultipartUpload is initiated using ObjectLayer.
    	res, err := obj.NewMultipartUpload(context.Background(), bucketName, testObject, opts)
    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    		t.Fatalf("MinIO %s : <ERROR>  %s", instanceType, err)
    	}
    	uploadID := res.UploadID
    
    	a := 0
    	b := globalMinPartSize
    	var parts []CompletePart
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    					pods = append(pods, &v1.Pod{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: fmt.Sprintf("pod_%d", i),
    							OwnerReferences: []metav1.OwnerReference{
    								{Controller: func() *bool { res := true; return &res }()},
    							},
    						},
    						Spec: podSpec,
    					})
    				}
    				return pods
    			}(),
    			deletedPod: func() *v1.Pod {
    				podSpec := resourcePodSpec("node1", "50M", "50m")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %3: tensor<2x8xi32>
    
      // CHECK: %[[CONST:.*]] = "tf.Const"
      // CHECK-SAME: value = dense<[2, 8]> : tensor<2xi32>
      // CHECK: %[[RES:.*]] = "tf.Reshape"(%arg0, %[[CONST]]) {device = "/job:localhost/replica:0/task:0/device:GPU:0"}
      // CHECK: return %[[RES]] : tensor<2x8xi32>
    }
    
    // CHECK-LABEL: testReshapeToSelfShape
    func.func @testReshapeToSelfShape(%arg0: tensor<?x4xf32>) -> tensor<?x4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    				PropagateResponse: func(req *http.Request, res *http.Response) {
    					scopes.Framework.Infof("invoking propagate response")
    					if res == nil {
    						scopes.Framework.Infof("no response")
    						return
    					}
    					if res.Cookies() == nil {
    						scopes.Framework.Infof("no cookies")
    						return
    					}
    					var sessionCookie *http.Cookie
    					for _, cookie := range res.Cookies() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		panic(err)
    	}
    
    	res, err := schema.NewStructural(convertedProps)
    	if err != nil {
    		panic(err)
    	}
    	return res
    }
    
    // Creates an *unstructured by decoding the given YAML. Panics on error
    func mustUnstructured(source string) interface{} {
    	source = FixTabsOrDie(source)
    	d := yaml.NewYAMLOrJSONDecoder(strings.NewReader(source), 4096)
    	var res interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	newPod.Spec.NodeName = "machine2"
    	res, _, err := registry.Update(ctx, podName, rest.DefaultUpdatedObjectInfo(newPod), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// the update should have succeeded
    	r, ok := res.(*example.Pod)
    	if !ok {
    		t.Fatalf("unexpected update result: %#v", res)
    	}
    	if r.Spec.NodeName != "machine2" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    //   // %input: tensor<1x3x2xf32>
    //   %unpack:3 = "tfl.unpack"(%input) {axis = 1 : i32, num = 3 : i32}
    //   %res = "tfl.concatenation"(%unpack#0, %unpack#1, %unpack#2)
    //        {axis = -1 : i32, fused_activation_function = "NONE"}
    //
    // can be optimized to
    //
    //   %cst = arith.constant dense<[1, 6]> : tensor<2xi32>
    //   %res = "tfl.reshape"(%input, %cst)
    struct FuseUnpackAndConcatToReshape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/server_test.go

    	req, _ := http.NewRequest(http.MethodOptions, s.endPoint, nil)
    	req.Header.Set("Origin", "http://foobar.com")
    	res, err := s.client.Do(req)
    	if err != nil {
    		c.Fatal(err)
    	}
    
    	for k := range expectedMap {
    		if v, ok := res.Header[k]; !ok {
    			c.Errorf("Expected key %s missing from %v", k, res.Header)
    		} else {
    			expectedSet := set.CreateStringSet(expectedMap[k]...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      local -r res=$?
      echo "Removing etcd replica, name: ${REPLICA_NAME}, port: ${port}, result: ${res}"
      return "${res}"
    }
    
    # Delete a kubernetes cluster. This is called from test-teardown.
    #
    # Assumed vars:
    #   MASTER_NAME
    #   NODE_INSTANCE_PREFIX
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	rows, err := db.Query("SELECT|people|age|")
    	if err != nil {
    		t.Fatalf("Query: %v", err)
    	}
    
    	var res alwaysErrScanner
    
    	for rows.Next() {
    		err = rows.Scan(&res)
    		if err == nil {
    			t.Fatal("expecting back an error")
    		}
    		if !errors.Is(err, errTestScanWrap) {
    			t.Fatalf("errors.Is mismatch\n%v\nWant: %v", err, errTestScanWrap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top