Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for Result (0.88 sec)

  1. cmd/site-replication.go

    			go func() {
    				defer wg.Done()
    				result := madmin.SiteNetPerfNodeResult{}
    				cli, err := globalSiteReplicationSys.getAdminClient(ctx, info.DeploymentID)
    				if err != nil {
    					result.Error = err.Error()
    				} else {
    					result = siteNetperf(ctx, duration)
    					result.Endpoint = cli.GetEndpointURL().String()
    				}
    				resultsMu.Lock()
    				results.NodeResults = append(results.NodeResults, result)
    				resultsMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // requested benchmark results or verbose logging. After the package
    // tests for all of the listed packages finish, and their output is
    // printed, go test prints a final 'FAIL' status if any package test
    // has failed.
    //
    // In package list mode only, go test caches successful package test
    // results to avoid unnecessary repeated running of tests. When the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			if got := tc.val.Pointer(); got != uintptr(tc.wantUnsafePointer) {
    				t.Errorf("unexpected uintptr result, got %#x, want %#x", got, uintptr(tc.wantUnsafePointer))
    			}
    			if got := tc.val.UnsafePointer(); got != tc.wantUnsafePointer {
    				t.Errorf("unexpected unsafe.Pointer result, got %#x, want %#x", got, tc.wantUnsafePointer)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    	// 3. Check if 2.A has committed in Tx (pass) or outside of Tx (fail).
    	sendQuery := make(chan struct{})
    	// The Tx status is returned through the row results, ensure
    	// that the rows results are not canceled.
    	bypassRowsAwaitDone = true
    	hookTxGrabConn = func() {
    		cancel()
    		<-sendQuery
    	}
    	rollbackHook = func() {
    		close(sendQuery)
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		objLayer := newObjectLayerFn()
    
    		opts := HealthOptions{}
    		result := objLayer.Health(ctx, opts)
    
    		metrics = make([]MetricV2, 0, 2+4*len(result.ESHealth))
    
    		metrics = append(metrics, MetricV2{
    			Description: getClusterWriteQuorumMD(),
    			Value:       float64(result.WriteQuorum),
    		})
    
    		health := 1
    		if !result.Healthy {
    			health = 0
    		}
    
    		metrics = append(metrics, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          A map of: output key -> output result.
        """
        out = nn_ops.conv2d(
            conv_input,
            self.conv_filters,
            strides=[1, 1, 2, 1],
            dilations=[1, 1, 1, 1],
            padding='SAME',
            data_format='NHWC',
        )
    
        return {'output': out}
    
    
    # TODO(b/280208261): Add unit tests for comparing unquantized and
    # quantized results
    @test_util.run_all_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

            .build()
        server.useHttps(handshakeCertificates.sslSocketFactory())
      }
    
      private fun gzip(data: String): Buffer {
        val result = Buffer()
        val sink = GzipSink(result).buffer()
        sink.writeUtf8(data)
        sink.close()
        return result
      }
    
      private fun cancelLater(
        call: Call,
        delay: Long,
      ): Thread {
        val thread =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	defer destroyFunc()
    	obj := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", UID: "random-uid"},
    	}
    	result, err := s.finalizeDelete(genericapirequest.NewContext(), obj, false, &metav1.DeleteOptions{})
    	if err != nil {
    		t.Fatalf("unexpected err: %s", err)
    	}
    	returnedObj := result.(*metav1.Status)
    
    	expectedObj := &metav1.Status{
    		Status: metav1.StatusSuccess,
    		Details: &metav1.StatusDetails{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    			if got, want := w.HeaderMap.Get("Location"), tt.loc; got != want {
    				t.Errorf("#%d: Location = %q; want = %q", i, got, want)
    			}
    		} else {
    			if got, want := w.HeaderMap.Get("Result"), tt.want; got != want {
    				t.Errorf("#%d: Result = %q; want = %q", i, got, want)
    			}
    		}
    	}
    }
    
    // Test that we don't attempt trailing-slash redirect on a path that already has
    // a trailing slash.
    // See issue #65624.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      func.return %0 : tensor<8x16xf32>
    
      // CHECK-LABEL: round
      // CHECK: %[[ARG:.*]]: tensor<8x16xf32>
      // CHECK: %[[RESULT:.*]] = "tfl.round"(%[[ARG]]) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      // CHECK: return %[[RESULT]] : tensor<8x16xf32>
    }
    
    func.func @resize_nearest_neighbor(%arg0: tensor<1x100x100x3xf32>, %arg1: tensor<4xi32>) -> tensor<?xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top