Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 141 for Result (0.18 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    }
    
    // Returns nodes with given type.
    std::vector<Node*> GatherNodesWithType(const Graph& g, const string& type) {
      std::vector<Node*> result;
      for (Node* n : g.nodes()) {
        if (n->type_string() == type) {
          result.push_back(n);
        }
      }
      return result;
    }
    
    // Gets data types from `arg_nodes` and fills them into `recv_at_host_dtypes`.
    Status GetArgDataTypes(const std::vector<Node*>& arg_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K 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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top