Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 236 for casts (0.07 sec)

  1. src/net/http/fs_test.go

    	if got, want := resp.Header.Get("Content-Length"), fmt.Sprint(len(file)); got != want {
    		t.Fatalf("Content-Length mismatch for HEAD request: got %v, want %v", got, want)
    	}
    
    	// Range tests
    	req.Method = MethodGet
    Cases:
    	for _, rt := range ServeFileRangeTests {
    		if rt.r != "" {
    			req.Header.Set("Range", rt.r)
    		}
    		resp, body := getBody(t, fmt.Sprintf("range test %q", rt.r), req, c)
    		if resp.StatusCode != rt.code {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    attributes (`_replication_info` and `_xla_compile_device_type`) into legacy
    attributes. This ensures the unified attributes do not get exposed outside
    of the MLIR bridge with V1 pipeline in some cases. The pass expects to have
    either none or both of the unified attributes present in an op for the
    conversion to happen. Otherwise it will fail.
    
    For example, `_replication_info="cluster"` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Event{Type: "service", ID: "selector.com", Namespace: selector.Namespace},
    			Event{Type: "eds cache", ID: "selector.com", Namespace: selector.Namespace},
    			Event{Type: "xds full"})
    	})
    
    	cases := []struct {
    		name      string
    		instances []testWorkloadInstance
    	}{
    		{
    			name: "change label removing all",
    			instances: []testWorkloadInstance{
    				{
    					name:           selector.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    // limitations under the License.
    
    [[upgrading_version_4]]
    = Upgrading your build from Gradle 4.x to 5.0
    
    This chapter provides the information you need to migrate your older Gradle 4.x builds to Gradle 5.0.
    In most cases, you will need to apply the changes from all versions that come after the one you're upgrading from.
    For example, if you're upgrading from Gradle 4.3 to 5.0, you will also need to apply the changes since 4.4, 4.5, etc up to 5.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. pkg/apis/networking/validation/validation_test.go

    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    			setIngressFromPodSelector("e", "f"),
    			setIngressPorts(makePort(&protocolTCP, intstr.FromInt32(32768), 32768))),
    	}
    
    	// Success cases are expected to pass validation.
    
    	for k, v := range successCases {
    		if errs := ValidateNetworkPolicy(v, NetworkPolicyValidationOptions{AllowInvalidLabelValueInSelector: true}); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          // even though K doesn't explicitly implement Comparable.
          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // constants (or large broadcasts of constants) can increase the live range
      // of those constants, and increase overall memory usage.
      //
      // This function removes "obviously bad" cases like these.
      Status DeclusterNodes();
    
      // Manifests the clustering decisions into the TF graph by tagging nodes with
      // an `_XlaCluster` attribute.  Also some basic filter logic, like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    take precedence over annotations declared in implemented interfaces.
    
    The link:{javadocPath}/org/gradle/api/tasks/Console.html[Console] and link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal] annotations in the table are special cases as they don’t declare either task inputs or task outputs. So why use them? It's so that you can take advantage of the <<java_gradle_plugin.adoc#java_gradle_plugin,Java Gradle Plugin Development plugin>> to help you develop and publish your own plugins....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    	}
    	return pod, status
    }
    
    func TestComputePodActions(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    
    	// Creating a pair reference pod and status for the test cases to refer
    	// the specific fields.
    	basePod, baseStatus := makeBasePodAndStatus()
    	noAction := podActions{
    		SandboxID:         baseStatus.SandboxStatuses[0].Id,
    		ContainersToStart: []int{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    type limitFact struct {
    	vid   ID
    	limit limit
    }
    
    // factsTable keeps track of relations between pairs of values.
    //
    // The fact table logic is sound, but incomplete. Outside of a few
    // special cases, it performs no deduction or arithmetic. While there
    // are known decision procedures for this, the ad hoc approach taken
    // by the facts table is effective for real code while remaining very
    // efficient.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top