Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 603 for Region (0.12 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

        std::vector<std::tuple<SizeT, int, int>> pre_screen;
        for (int begin = 0, end = begin + len; end <= peak.op_index;
             ++begin, ++end) {
          if (!std::any_of(operations_.begin() + begin, operations_.begin() + end,
                           [](const Operation& s) { return s.is_stateful; })) {
            if (const auto max_savings = MaxSavings(begin, end, peak.op_index);
                max_savings >= min_savings) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    		Configs: []config.Config{
    			makeEndpoint([]*networking.WorkloadEntry{
    				{Address: "1.2.3.4", Locality: "region/zone"},
    				{Address: "1.2.3.5", Locality: "notmatch"},
    			}),
    		},
    	})
    	ads := s.Connect(&model.Proxy{Locality: &core.Locality{Region: "region"}}, nil, watchAll)
    
    	assertEndpoints(ads, "1.2.3.4:80", "1.2.3.5:80")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    		// label to override the locality, so respect that here as well.
    		ls, f := proxy.Labels[model.LocalityLabel]
    		if f {
    			return util.ConvertLocality(ls)
    		}
    		return nil
    	}
    	return &core.Locality{
    		Region:  region,
    		Zone:    zone,
    		SubZone: subzone,
    	}
    }
    
    // initializeProxy completes the initialization of a proxy. It is expected to be called only after
    // initProxyMetadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import spock.lang.Issue
    
    class ConfigurationRoleUsageIntegrationTest extends AbstractIntegrationSpec implements ConfigurationUsageChangingFixture {
        // region Roleless (Implicit LEGACY Role) Configurations
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "default usage for roleless configuration is to allow anything"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/runtime/mbarrier.go

    // accessing mheap_.arena_used to check if a pointer points into the
    // heap. On relaxed memory machines, it's possible for a mutator to
    // extend the size of the heap by updating arena_used, allocate an
    // object from this new region, and publish a pointer to that object,
    // but for tracing running on another processor to observe the pointer
    // but use the old value of arena_used. In this case, tracing will not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                 << result.getResultNumber()
                 << ", resource type results are expected to have been "
                    "canonicalized away for region based control flow ops";
        }
      }
    
      for (Region& region : op.getRegions()) {
        if (failed(DecomposeTensorArrayOps(&region.front(), module, stats,
                                           decomposed_partitioned_call_callees)))
          return failure();
      }
      return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/runningsds_golden.json

        "log_format": {
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
        }
      },
      "node": {
        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "test.test",
        "locality": {
          "region": "regionA"
          ,
          "zone": "zoneB"
          ,
          "sub_zone": "sub_zoneC"
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      UniquePtrTo_TF_Status plugin_status(TF_NewStatus(), TF_DeleteStatus);
      auto region = std::make_unique<TF_ReadOnlyMemoryRegion>();
      std::string translated_name = TranslateName(fname);
      ops_->new_read_only_memory_region_from_file(
          filesystem_.get(), translated_name.c_str(), region.get(),
          plugin_status.get());
    
      if (TF_GetCode(plugin_status.get()) == TF_OK)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/trace/main.go

    	mux.HandleFunc("/syscall", traceviewer.SVGProfileHandlerFunc(pprofByGoroutine(computePprofSyscall(), parsed)))
    	mux.HandleFunc("/sched", traceviewer.SVGProfileHandlerFunc(pprofByGoroutine(computePprofSched(), parsed)))
    
    	// Region-based pprof endpoints.
    	mux.HandleFunc("/regionio", traceviewer.SVGProfileHandlerFunc(pprofByRegion(computePprofIO(), parsed)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    			}
    			if zone.Region != "" {
    				klog.InfoS("Adding node label from cloud provider", "labelKey", v1.LabelFailureDomainBetaRegion, "labelValue", zone.Region)
    				node.ObjectMeta.Labels[v1.LabelFailureDomainBetaRegion] = zone.Region
    				klog.InfoS("Adding node label from cloud provider", "labelKey", v1.LabelTopologyRegion, "labelValue", zone.Region)
    				node.ObjectMeta.Labels[v1.LabelTopologyRegion] = zone.Region
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top