Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,054 for inter (0.16 sec)

  1. pkg/proxy/winkernel/proxier.go

    		interfaces, _ := net.Interfaces() //TODO create interfaces
    		for _, inter := range interfaces {
    			addresses, _ := inter.Addrs()
    			for _, addr := range addresses {
    				addrIP, _, _ := netutils.ParseCIDRSloppy(addr.String())
    				if addrIP.String() == nodeIP.String() {
    					klog.V(2).InfoS("Record Host MAC address", "addr", inter.HardwareAddr)
    					hostMac = inter.HardwareAddr.String()
    				}
    			}
    		}
    		if len(hostMac) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // arguments must correspond to different resources and we can assign unique
        // IDs.
        assign_unique_id_to_all(func_op.getArguments());
      }
    
      // Since this analysis is neither inter-procedural nor inter-regional,
      // each region attached to Op's within a function is analyzed independently.
      // Seed this analysis for each such region by mapping all resource arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    You will also find it easier to take advantage of Gradle's power features to improve build performance.
    +
    The main downside is the extra work required to perform the migration, particularly if the existing build is complex and has many inter-project dependencies.
    However, these builds often benefit the most from a switch to idiomatic Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // Check for presence of unknown side-effecting ops within the while loop
      // body. These ops act as barriers and the optimization would not yield much
      // inter iteration parallelism for this while loop body. So return with
      // warning.
      if (chain_resource_to_ops_map.count(kUnknownResourceAndDevice) > 0) {
        std::set<std::string> blocking_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. pkg/apis/certificates/types.go

    	//
    	// Users of ClusterTrustBundles, including Kubelet, are free to reorder and
    	// deduplicate certificate blocks in this file according to their own logic,
    	// as well as to drop PEM block headers and inter-block data.
    	TrustBundle string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	hasConstraints := hasPreferredAffinityConstraints || hasPreferredAntiAffinityConstraints
    
    	// Optionally ignore calculating preferences of existing pods' affinity rules
    	// if the incoming pod has no inter-pod affinities.
    	if pl.args.IgnorePreferredTermsOfExistingPods && !hasConstraints {
    		return framework.NewStatus(framework.Skip)
    	}
    
    	// Unless the pod being scheduled has preferred affinity terms, we only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.h

      // multiple streams and so se::Events must be defined and waited for. If
      // 'use_multiple_streams' is true, 'allocate_xla_tensors' must also be true
      // because we track inter-stream dependencies through events inside XlaTensor
      // objects.
      XlaComputationLaunchContext(xla::LocalClient* client,
                                  se::DeviceMemoryAllocator* xla_allocator,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        return absl::OkStatus();
      }
    
      // We conservatively assume that functions will both read and write resource
      // variables.  In the future we may consider doing some form of
      // inter-procedural analysis.
      if (MayCallFunction(n, flib_def)) {
        *out_resource_op_kind = XlaResourceOpKind::kReadWrite;
      } else {
        *out_resource_op_kind = std::nullopt;
      }
    
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Artifacts are typically designed to be used or consumed by users or other projects, or deployed to hosting systems.
    In such cases, the artifact is a single file.
    Directories are common in the case of inter-project dependencies to avoid the cost of producing the publishable artifact.
    
    [[sub:terminology_capability]]
    == Capability
    
    A capability identifies a feature offered by one or multiple components.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/strategy.go

    		return false
    	}
    	for i := range a {
    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // This is an unusual case.  Service has a number of inter-related fields and
    // in order to avoid breaking clients we try really hard to infer what users
    // mean when they change them.
    //
    // Services are effectively a discriminated union, where `type` is the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top