Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for central (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        }
      }
    }
    
    // Decompose control flow in `device_cluster` into device computation and host
    // (outside compiled) computation into two separate control flow ops with
    // communication between the device/host for data dependencies.  Both device and
    // host control flow initially remain within `device_cluster` and a subsequency
    // call to MoveToHostSingleCluster moves the host side control flow to the host
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	rbachttp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rbac/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    //	   it is placed on the mcentral free list for the mspan's size
    //	   class.
    //
    //	3. Otherwise, if all objects in the mspan are free, the mspan's
    //	   pages are returned to the mheap and the mspan is now dead.
    //
    // Allocating and freeing a large object uses the mheap
    // directly, bypassing the mcache and mcentral.
    //
    // If mspan.needzero is false, then free object slots in the mspan are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    	"testing"
    
    	accesslog "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	fileaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/file/v3"
    	grpcaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/grpc/v3"
    	otelaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/open_telemetry/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: remove the EXPERIMENTAL tag from the phase "kubeadm join control-plane-prepare download-certs". ([#124374](https://github.com/kubernetes/kubernetes/pull/124374), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "UGE", controls: 1},
    		{name: "Z", controls: 1},                  // Control == 0 (take a register instead of flags)
    		{name: "NZ", controls: 1},                 // Control != 0
    		{name: "ZW", controls: 1},                 // Control == 0, 32-bit
    		{name: "NZW", controls: 1},                // Control != 0, 32-bit
    		{name: "TBZ", controls: 1, aux: "Int64"},  // Control & (1 << AuxInt) == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // transmitted until the flow-control window is updated from the first request.
        val call2 = client.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.code).isEqualTo(200)
    
        // Close the response body. This should discard the buffered data and update the connection
        // flow-control window.
        response1.close()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      EXPECT_EQ(feed2, control_inputs[1]);
    
      // Export to a graph def so we can import a graph with control dependencies
      TF_DeleteBuffer(graph_def);
      graph_def = TF_NewBuffer();
      TF_GraphToGraphDef(graph, graph_def, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Import again, with remapped control dependency, into the same graph
      TF_DeleteImportGraphDefOptions(opts);
      opts = TF_NewImportGraphDefOptions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    	}
    	if g, e := res.Header.Get("Last-Modified"), ""; g != e {
    		t.Errorf("got last-modified = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Cache-Control"), ""; g != e {
    		t.Errorf("got cache-control = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Content-Range"), "bytes */7"; g != e {
    		t.Errorf("got content-range = %q, want %q", g, e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    	"time"
    
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	tcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3"
    	tracing "github.com/envoyproxy/go-control-plane/envoy/type/tracing/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top