Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for resultCh (0.12 sec)

  1. cmd/batch-handlers.go

    }
    
    func (j *BatchJobPool) resume() {
    	results := make(chan itemOrErr[ObjectInfo], 100)
    	ctx, cancel := context.WithCancel(j.ctx)
    	defer cancel()
    	if err := j.objLayer.Walk(ctx, minioMetaBucket, batchJobPrefix, results, WalkOptions{}); err != nil {
    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				b.ResetTimer()
    				for i := 0; i < b.N; i++ {
    					result := &example.PodList{}
    					err = cacher.GetList(context.TODO(), "pods", storage.ListOptions{
    						Predicate:       pred,
    						Recursive:       true,
    						ResourceVersion: "12345",
    					}, result)
    					if err != nil {
    						b.Fatalf("GetList cache: %v", err)
    					}
    					if len(result.Items) != tc.expectObjectNum {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    // CHECK: [[result_0:%.*]] = "tf.RaggedTensorToVariant"
    // CHECK: [[result_1:%.*]] = "tf.RaggedTensorToVariant"
    // CHECK-NEXT: [[flow_in_0:%.*]] = "tf_mlrt.tf_await"(%arg0) : (!mlrt.future) -> tensor<f32>
    // CHECK-NEXT: [[flow_in_1:%.*]] = "tf_mlrt.tf_await"(%arg2) : (!mlrt.future) -> tensor<f32>
    // CHECK-NEXT: [[flow_out_0:%.*]] = "tf.TensorArrayWriteV3"(%arg7, %arg5, [[result_0]], [[flow_in_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // result, to the index of the same tensorlist in the arguments. For `If` op's
    // branch functions, the results and arguments are not usually matched 1-1. This
    // will let us konw which tensorlist result maps to which tensorlist in the
    // arguments. Once we know this info it will help us decide the types of the
    // result tensorlist based on the operand's of the `If` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/go/build/build.go

    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    // Using filepath.IsAbs and filepath.Join here means the results will be
    // different on different systems, but that's OK: -I and -L options are
    // inherently system-dependent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    	// should aggressively cleanup all content related to the pod. This is true
    	// during pod eviction (when we wish to remove that content to free resources)
    	// as well as after the request to delete a pod has resulted in containers being
    	// stopped (which is a more graceful action). Note that a deleting pod can still
    	// be evicted.
    	//
    	// Intended for use by subsystem sync loops to know when to start tearing down
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    0.19.html[3.0.19], and https://groovy-lang.org/changelogs/changelog-3.0.20.html[3.0.20] changes are also included.
    
    Some changes in static type checking have resulted in source-code incompatibilities. One of these occurs if you were casting a closure to an `Action` without generics. Starting with 3.0.18, this now results in the parameter of the closure being `Object` instead of any explicit type specified. This can be fixed by adding the appropriate type to the cast, and the redundant parameter...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    // Originally, the work of this controller was split amongst three
    // controllers. This controller is the result a large effort to simplify the
    // PV subsystem. During that effort, it became clear that we needed to ensure
    // that every single condition was handled and accounted for in the code, even
    // if it resulted in no-op code branches.
    //
    // As a result, the controller code may seem overly verbose, commented, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top