Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 473 for Region (0.13 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    	disableDebugTrace()
    }
    
    // scoreCallsRegion assigns numeric scores to each of the callsites in
    // region 'region' within function 'fn'. This can be called on
    // an entire function, or with 'region' set to a chunk of
    // code corresponding to an inlined call.
    func (csa *callSiteAnalyzer) scoreCallsRegion(fn *ir.Func, region ir.Nodes, cstab CallSiteTab, doCallResults bool, ic *ir.InlinedCallExpr) {
    	if debugTrace&debugTraceScoring != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    			expected: "fake",
    		},
    		{
    			testName: "nodeID",
    			key:      "nodeID",
    			option:   option.NodeID("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "region",
    			key:      "region",
    			option:   option.Region("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "zone",
    			key:      "zone",
    			option:   option.Zone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "sub zone",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pkg/controller/testutil/test_utils.go

    	for _, node := range nodes.Items {
    		zones.Insert(utilnode.GetZoneKey(&node))
    	}
    	return zones.List()
    }
    
    // CreateZoneID returns a single zoneID for a given region and zone.
    func CreateZoneID(region, zone string) string {
    	return region + ":\x00:" + zone
    }
    
    // GetKey is a helper function used by controllers unit tests to get the
    // key for a given kubernetes resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/bootstrap/instance_test.go

    	}
    	if excludeLocality {
    		// zone and region can vary based on the environment, so it shouldn't be considered in the diff.
    		replacements = append(replacements,
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"zone": ".+"`),
    				replacement: []byte("\"zone\": \"\""),
    			},
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"region": ".+"`),
    				replacement: []byte("\"region\": \"\""),
    			})
    	}
    
    	out := in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

        func.return %0 : tensor<0xf32>
      }
    }
    
    // -----
    
    // Test If Region immutable case.
    
    module {
      func.func @f(%arg0: tensor<i1>) -> tensor<0xf32> {
        // CHECK-NOT: "tf.VarHandleOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    		if x == 0 {
    			cur += 64
    			continue
    		}
    		t := uint(sys.TrailingZeros64(x))
    		l := uint(sys.LeadingZeros64(x))
    
    		// Finish any region spanning the uint64s
    		cur += t
    		if start == notSetYet {
    			start = cur
    		}
    		most = max(most, cur)
    		// Final region that might span to next uint64
    		cur = l
    	}
    	if start == notSetYet {
    		// Made it all the way through without finding a single 1 bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top