Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for InfoS (0.3 sec)

  1. tensorflow/compiler/aot/codegen.cc

        const xla::ShapeProto& shape = ps.parameters(i);
        *infos +=
            absl::Substitute("{ kArg$0Shapes, $1 },\n", i, shape.dimensions_size());
      }
      *infos += R"(    };
        return kArgShapeInfoTable;
      })";
      return absl::OkStatus();
    }
    
    // Generate shape infos for results.
    Status GenResultShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
      if (ps.result().element_type() != xla::TUPLE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_client.go

    	nodeID string,
    	maxVolumePerNode int64,
    	accessibleTopology map[string]string,
    	err error) {
    	klog.V(4).InfoS(log("calling NodeGetInfo rpc"))
    
    	var getNodeInfoError error
    	nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError = c.nodeGetInfoV1(ctx)
    	if getNodeInfoError != nil {
    		klog.InfoS("Error calling CSI NodeGetInfo()", "err", getNodeInfoError.Error())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager.go

    	return ok
    }
    
    func (m *UsernsManager) releaseWithLock(pod types.UID) {
    	v, ok := m.usedBy[pod]
    	if !ok {
    		klog.V(5).InfoS("pod user namespace allocation not present", "podUID", pod)
    		return
    	}
    	delete(m.usedBy, pod)
    
    	klog.V(5).InfoS("releasing pod user namespace allocation", "podUID", pod)
    	m.removed++
    
    	_ = os.Remove(filepath.Join(m.kl.GetPodDir(pod), mappingsFile))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/go/token/position.go

    // information for line directives such as //line filename:line:column.
    func (f *File) AddLineColumnInfo(offset int, filename string, line, column int) {
    	f.mutex.Lock()
    	if i := len(f.infos); (i == 0 || f.infos[i-1].Offset < offset) && offset < f.size {
    		f.infos = append(f.infos, lineInfo{offset, filename, line, column})
    	}
    	f.mutex.Unlock()
    }
    
    // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. cmd/metacache-set.go

    	case "auto":
    		return -1
    	}
    	// defaults to 'strict'
    	return driveCount
    }
    
    func calcCommonWritesDeletes(infos []DiskInfo, readQuorum int) (commonWrite, commonDelete uint64) {
    	deletes := make([]uint64, len(infos))
    	writes := make([]uint64, len(infos))
    	for index, di := range infos {
    		deletes[index] = di.Metrics.TotalDeletes
    		writes[index] = di.Metrics.TotalWrites
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/node_container_manager_linux.go

    	if cm.CgroupsPerQOS && nc.EnforceNodeAllocatable.Has(kubetypes.NodeAllocatableEnforcementKey) {
    		nodeAllocatable = cm.getNodeAllocatableInternalAbsolute()
    	}
    
    	klog.V(4).InfoS("Attempting to enforce Node Allocatable", "config", nc)
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cm.cgroupRoot,
    		ResourceParameters: getCgroupConfig(nodeAllocatable),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/topology_hints.go

    	for resource, requested := range accumulatedResourceRequests {
    		// Only consider devices that actually contain topology information.
    		if aligned := m.deviceHasTopologyAlignment(resource); !aligned {
    			klog.InfoS("Resource does not have a topology preference", "resource", resource)
    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/proxy/serviceport.go

    	info.externalIPs = ipFamilyMap[ipFamily]
    
    	// Log the IPs not matching the ipFamily
    	if ips, ok := ipFamilyMap[proxyutil.OtherIPFamily(ipFamily)]; ok && len(ips) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following external IPs for given service as they don't match IP Family",
    			"ipFamily", ipFamily, "externalIPs", ips, "service", klog.KObj(service))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables.go

    					}
    				}
    				return true, nil
    			})
    			if err != nil {
    				klog.InfoS("Inconsistent iptables state detected")
    			}
    			return true, nil
    		}, stopCh)
    		if err != nil {
    			// stopCh was closed
    			for _, table := range tables {
    				_ = runner.DeleteChain(table, canary)
    			}
    			return
    		}
    
    		klog.V(2).InfoS("Reloading after iptables flush")
    		reloadFunc()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_static.go

    		p.updateCPUsToReuse(pod, container, cpuset)
    		klog.InfoS("Static policy: container already present in state, skipping", "pod", klog.KObj(pod), "containerName", container.Name)
    		return nil
    	}
    
    	// Call Topology Manager to get the aligned socket affinity across all hint providers.
    	hint := p.affinity.GetAffinity(string(pod.UID), container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
Back to top