Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for xoring (0.35 sec)

  1. src/cmd/go/internal/load/pkg.go

    	OrigImportPath    string               // original import path before adding '_test' suffix
    	PGOProfile        string               // path to PGO profile
    	ForMain           string               // the main package if this package is built specifically for it
    
    	Asmflags   []string // -asmflags for this package
    	Gcflags    []string // -gcflags for this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    	testcases := []struct {
    		name        string
    		nodeIP      string
    		podIPs      []string
    		expectedIPs []string
    	}{
    		{
    			name:        "Simple",
    			nodeIP:      "",
    			podIPs:      []string{"10.0.0.1"},
    			expectedIPs: []string{"10.0.0.1"},
    		},
    		{
    			name:        "Dual-stack",
    			nodeIP:      "",
    			podIPs:      []string{"10.0.0.1", "fd01::1234"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: (tensor<!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<192x2680xf32>
        %1 = "tf.RestoreV2"(%arg0, %cst, %cst_1) {device = ""} : (tensor<!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<*xf32>
        "tf.AssignVariableOp"(%0, %1) : (tensor<!tf_type.resource<tensor<192x2680xf32>>>, tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	}
    	if req.RemoteAddr == "" {
    		req.RemoteAddr = h.c.RemoteAddr().String()
    	}
    	h.h.ServeHTTP(rw, req)
    }
    
    // loggingConn is used for debugging.
    type loggingConn struct {
    	name string
    	net.Conn
    }
    
    var (
    	uniqNameMu   sync.Mutex
    	uniqNameNext = make(map[string]int)
    )
    
    func newLoggingConn(baseName string, c net.Conn) net.Conn {
    	uniqNameMu.Lock()
    	defer uniqNameMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                    delayedRuntimeException, "delayedRuntimeException", finishRuntimeException));
    
        final Function<ListenableFuture<String>, String> nameGetter =
            new Function<ListenableFuture<String>, String>() {
              @Override
              public String apply(ListenableFuture<String> input) {
                for (TestFuture future : allFutures) {
                  if (future.future == input) {
                    return future.name;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                    delayedRuntimeException, "delayedRuntimeException", finishRuntimeException));
    
        final Function<ListenableFuture<String>, String> nameGetter =
            new Function<ListenableFuture<String>, String>() {
              @Override
              public String apply(ListenableFuture<String> input) {
                for (TestFuture future : allFutures) {
                  if (future.future == input) {
                    return future.name;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512_test.go

    // SHA512 hash algorithm. See FIPS 180-4.
    
    package sha512
    
    import (
    	"bytes"
    	"crypto/internal/boring"
    	"crypto/rand"
    	"encoding"
    	"encoding/hex"
    	"fmt"
    	"hash"
    	"io"
    	"testing"
    )
    
    type sha512Test struct {
    	out       string
    	in        string
    	halfState string // marshaled hash state after first half of in written, used by TestGoldenMarshal
    }
    
    var golden224 = []sha512Test{
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelSignatureDefImporterLite::ConvertGraph(
        const std::string& name,
        const std::vector<std::pair<std::string, TensorInfo>>& inputs,
        const std::vector<std::pair<std::string, TensorInfo>>& outputs,
        const std::vector<std::string> control_outputs,
        std::unordered_map<std::string, std::string>& tf_name_to_mlir_name) {
      VLOG(1) << "Importing Signature: " << name;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "limits": { "type": "object", "properties": { "cpu": { "type": "string" }, "memory": { "type": "string" } } }, "requests": { "type": "object", "properties": { "cpu": { "type": "string" }, "memory": { "type": "string" } } } } }, "revision": { "type": "string" }, "runAsRoot": { "type": "boolean" }, "unprivilegedPort": { "type": ["string", "boolean"], "enum": [true, false, "auto"] }, "service": { "type": "object", "properties": { "annotations": { "type": "object" }, "externalTrafficPolic": { "type":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. src/reflect/value.go

    }
    
    // String returns the string v's underlying value, as a string.
    // String is a special case because of Go's String method convention.
    // Unlike the other getters, it does not panic if v's Kind is not [String].
    // Instead, it returns a string of the form "<T value>" where T is v's type.
    // The fmt package treats Values specially. It does not call their String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top