Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 265 for region (0.19 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    		// A "shadowed address" is a pointer, offset, and size describing a memory region that
    		// is known to be written. We keep track of shadowed addresses in the shadowed map,
    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/bootstrap/platform/gcp_test.go

    			e := NewGCP()
    			got := e.Locality()
    			assert.Equal(t, got.Zone, tt.want["Zone"])
    			assert.Equal(t, got.Region, tt.want["Region"])
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      const uint64_t length;
    } GCSMemoryRegion;
    
    void Cleanup(TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<GCSMemoryRegion*>(region->plugin_memory_region);
      plugin_memory_free(const_cast<void*>(r->address));
      delete r;
    }
    
    const void* Data(const TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<GCSMemoryRegion*>(region->plugin_memory_region);
      return r->address;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

    AnnotateCompileOpAndGetExecuteArgToWhileArgsMapping(
        TF::WhileRegionOp while_op, tf_device::ReplicateOp replicate,
        TF::TPUExecuteAndUpdateVariablesOp execute,
        tf_device::LaunchOp compile_launch) {
      Region& body = while_op.getBody();
      Region& cond = while_op.getCond();
    
      llvm::SmallVector<std::pair<int64_t, llvm::SmallVector<Value, 4>>, 4> mapping;
      auto mirrored_variable_indices_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/runtime/mranges.go

    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // addrRange represents a region of address space.
    //
    // An addrRange must never span a gap in the address space.
    type addrRange struct {
    	// base and limit together represent the region of address space
    	// [base, limit). That is, base is inclusive, limit is exclusive.
    	// These are address over an offset view of the address space on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        kubernetes.io/os: linux
        cloud.google.com/gke-nodepool: default-pool
        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/model/proxy.go

    func ConvertLocality(locality string) *core.Locality {
    	if locality == "" {
    		return &core.Locality{}
    	}
    
    	region, zone, subzone := label.SplitLocalityLabel(locality)
    	return &core.Locality{
    		Region:  region,
    		Zone:    zone,
    		SubZone: subzone,
    	}
    }
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

            ConvertAndWrapUsesInUnrealizedCast(value, converter, rewriter);
          }
    
          // Convert block arguments
          for (auto &region : op->getRegions()) {
            for (auto &block : region.getBlocks()) {
              rewriter.setInsertionPointToStart(&block);
              for (auto arg : block.getArguments()) {
                ConvertAndWrapUsesInUnrealizedCast(arg, converter, rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. cmd/server-main.go

    		}
    		if len(warnings) > 0 {
    			logger.Info(color.Yellow("STARTUP WARNINGS:"))
    			for _, warn := range warnings {
    				logger.Info(warn)
    			}
    		}
    	}()
    
    	region := globalSite.Region()
    	if region == "" {
    		region = "us-east-1"
    	}
    	bootstrapTrace("globalMinioClient", func() {
    		globalMinioClient, err = minio.New(globalLocalNodeName, &minio.Options{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				WorkloadType:      workloadapi.WorkloadType_POD,
    				WorkloadName:      "name",
    				Status:            workloadapi.WorkloadStatus_UNHEALTHY,
    				ClusterId:         testC,
    				Locality: &workloadapi.Locality{
    					Region: "region",
    					Zone:   "zone",
    				},
    			},
    		},
    		{
    			name: "pod with authz",
    			inputs: []any{
    				model.WorkloadAuthorization{
    					LabelSelector: model.NewSelector(map[string]string{"app": "foo"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top