Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RES (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        *it++ = meet;
      }
      if (!changed) return false;
    
      FailureOr<bool> res = PropagateShapeToFunctions(
          op->getParentOfType<ModuleOp>(), input_types, {f}, max_iterations);
      if (failed(res)) {
        op->emitOpError("propagating shapes failed");
        return false;
      }
      return *res;
    }
    
    bool ShapeInference::InferShapeForMapDataset(MapDatasetOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    				}
    			}
    		}(ctx, i)
    	}
    	for res := range objInfoCh {
    		if res.Err != nil {
    			resyncStatus = ResyncFailed
    			replLogIf(ctx, res.Err)
    			return
    		}
    		select {
    		case <-s.resyncCancelCh:
    			resyncStatus = ResyncCanceled
    			return
    		case <-ctx.Done():
    			return
    		default:
    		}
    		if heal && lastCheckpoint != "" && lastCheckpoint != res.Item.Name {
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

                  %add1 = "tf.Add"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %add2 = "tf.Add"(%add1, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %res = "tf.Print"(%add2) { message = "add result" } : (tensor<*xi32>) -> (tensor<*xi32>)
                  tf_executor.yield %add1, %add2 : tensor<*xi32>, tensor<*xi32>
                }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top