Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Region (0.17 sec)

  1. cluster/gce/util.sh

        --project "${PROJECT}" \
        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
      gcloud compute forwarding-rules create "${MASTER_NAME}-internal" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --network "${NETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    		locality := localityLbEndpoint.Locality
    		if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone1" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(0)))
    		} else if locality.Region == "region1" && locality.Zone == "zone1" && locality.SubZone == "subzone2" {
    			g.Expect(localityLbEndpoint.Priority).To(Equal(uint32(1)))
    		} else if locality.Region == "region2" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Build a subgraph with a given name out of the region either corresponding
      // to a function's body or while op. Modifies *region by calling
      // ExtractControlEdges.
      std::optional<BufferOffset<tflite::SubGraph>> BuildSubGraph(
          const std::string& name, Region* region, int index);
    
      // Modifies *block by unwrapping all ControlNodeOps. The DAG of the control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        TypeRange input_types, ArrayRef<Region*> regions, int64_t max_iterations) {
      DCOMMENT("\tPropagating shapes to regions");
      bool any_failure = false;
      bool any_nonconvergence = false;
      // If shape propagation fails for one region, return failure, but do not
      // early exit and attempt to propagate shapes for all provided regions to
      // have a best-effort propagation.
      for (auto region : regions) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    						Locality: model.Locality{
    							ClusterID: "cluster-1",
    							Label:     "region1/zone1/subzone1",
    						},
    						LbWeight: 30,
    						Network:  "filtered-out",
    					},
    				},
    			},
    			expected: []*endpoint.LocalityLbEndpoints{
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def RegionControlFlowToFunctionalPass : Pass<"tf-region-control-flow-to-functional", "ModuleOp"> {
      let summary = "Transforms region-based control flow operations to their functional counterparts";
    
      let description = [{
        This pass transforms region-based control flow operations in the TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    // Applicable only in a federated deployment
    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    	core, err := miniogo.NewCore(host, &miniogo.Options{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		ldr.SetSymSect(ldr.Lookup("_end", 0), ldr.SymSect(end))
    	}
    
    	if ctxt.IsPPC64() && ctxt.IsElf() {
    		// Resolve .TOC. symbols for all objects. Only one TOC region is supported. If a
    		// GOT section is present, compute it as suggested by the ELFv2 ABI. Otherwise,
    		// choose a similar offset from the start of the data segment.
    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	defer cancel()
    
    	affinityPod := st.MakePod().Name("afp").Namespace("ns1").UID("afp").Annotation("annot2", "val2").Priority(mediumPriority).NominatedNodeName("node1").PodAffinityExists("service", "region", st.PodAffinityWithRequiredReq).Obj()
    	labelPod := st.MakePod().Name("lbp").Namespace(affinityPod.Namespace).Label("service", "securityscan").Node("node1").Obj()
    
    	c := testingclock.NewFakeClock(time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			mile("BeginCreate")
    			return func(_ context.Context, success bool) {
    				mile(fmt.Sprintf("FinishCreate(%v)", success))
    			}, fmt.Errorf("begin")
    		},
    		expectMilestones: []string{"BeginCreate"},
    	}}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			pod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top