Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for assign_id (0.17 sec)

  1. cni/pkg/nodeagent/net.go

    	var addedIPSnapshot []netip.Addr
    
    	for _, pod := range ambientPods {
    		podIPs := util.GetPodIPsIfPresent(pod)
    		if len(podIPs) == 0 {
    			log.Warnf("pod %s does not appear to have any assigned IPs, not syncing with ipset", pod.Name)
    		} else {
    			addedIps, err := addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/net/http/cookiejar/jar.go

    	mu sync.Mutex
    
    	// entries is a set of entries, keyed by their eTLD+1 and subkeyed by
    	// their name/domain/path.
    	entries map[string]map[string]entry
    
    	// nextSeqNum is the next sequence number assigned to a new cookie
    	// created SetCookies.
    	nextSeqNum uint64
    }
    
    // New returns a new cookie jar. A nil [*Options] is equivalent to a zero
    // Options.
    func New(o *Options) (*Jar, error) {
    	jar := &Jar{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        if (var_handle_op.getSharedName() == ANONYMOUS_NAME) {
          return std::make_optional(LocalVarOp(var_handle_op));
        }
      }
      return {};
    }
    
    // Eliminate local variables that are only assigned to but never read, and thus
    // are dead.
    void RemoveDeadLocalVariables(Block &block) {
      llvm::SmallVector<LocalVarOp, 8> local_vars;
      for (Operation &op : block) {
        if (auto local_var = IsLocalVarOp(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
      let summary = "Forms clusters from operations assigned to the same TPU computation";
    
      let description = [{
        TPU computations from the frontend are composed of a `tf.TPUReplicateMetadata`
        op, a subgraph of ops (TensorFlow Dialect) each with a matching
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/internal/reflectlite/value.go

    // stored in the interface i. ValueOf(nil) returns the zero Value.
    func ValueOf(i any) Value {
    	if i == nil {
    		return Value{}
    	}
    	return unpackEface(i)
    }
    
    // assignTo returns a value v that can be assigned directly to typ.
    // It panics if v is not assignable to typ.
    // For a conversion to an interface type, target is a suggested scratch space to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        }
        if (sharding.tile_assignment_devices_size() != 1) {
          op->emitOpError("TF/XLA TPU bridge input check: There must be ")
              << "exactly 1 device for MAXIMAL sharding."
              << " Number of devices assigned are "
              << sharding.tile_assignment_devices_size() << "\n";
          return false;
        } else {
          int sharding_device = sharding.tile_assignment_devices(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.go

    				logger.Error(releaseErr, "Error when releasing CIDR", "index", idx, "CIDR", cidr)
    			}
    		}
    		return nil
    	}
    
    	// If we reached here, it means that the node has no CIDR currently assigned. So we set it.
    	for i := 0; i < cidrUpdateRetries; i++ {
    		if err = nodeutil.PatchNodeCIDRs(ctx, r.client, types.NodeName(node.Name), cidrsString); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_linux.go

    func waitForPodCIDR(ctx context.Context, client clientset.Interface, nodeName string) (*v1.Node, error) {
    	// since allocators can assign the podCIDR after the node registers, we do a watch here to wait
    	// for podCIDR to be assigned, instead of assuming that the Get() on startup will have it.
    	ctx, cancelFunc := context.WithTimeout(ctx, timeoutForNodePodCIDR)
    	defer cancelFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device.cc

      }
      return registrations;
    }
    
    XlaDeviceOpRegistrations* RegisterXlaDeviceKernels(const char* device,
                                                       const char* jit_device) {
      // Any op assigned to the device that isn't rewritten by the graph rewriter
      // gets executed by an XlaCompileOnDemandOp, which compiles it and executes
      // it just-in-time.
      auto factory = [](OpKernelConstruction* context) -> OpKernel* {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/go/types/typexpr.go

    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top