Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,573 for info2 (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false -tf-input-arrays=x,y -tf-input-data-types=DT_INT32,DT_INT32 -tf-input-shapes=2:3 -tf-output-arrays=x_y_sum %s --tf-debug-info=%s.debug -o - 2>&1 | FileCheck %s
    
    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. pkg/proxy/serviceport.go

    		if ingFamily := proxyutil.GetIPFamilyFromIP(ip); ingFamily == ipFamily {
    			info.loadBalancerVIPs = append(info.loadBalancerVIPs, ip)
    		} else {
    			invalidIPs = append(invalidIPs, ip)
    		}
    	}
    	if len(invalidIPs) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    		dataFile := filepath.Join(volPath, volDataFileName)
    		klog.V(4).Info(log("also deleting volume info data file [%s]", dataFile))
    		if err := os.Remove(dataFile); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to delete volume data file [%s]: %v", dataFile, err))
    		}
    		// remove volume path
    		klog.V(4).Info(log("deleting volume path [%s]", volPath))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  4. pkg/test/echo/server/endpoint/hbone.go

    			NextProtos:   []string{"h2"},
    			GetConfigForClient: func(info *tls.ClientHelloInfo) (*tls.Config, error) {
    				// There isn't a way to pass through all ALPNs presented by the client down to the
    				// HTTP server to return in the response. However, for debugging, we can at least log
    				// them at this level.
    				epLog.Infof("TLS connection with alpn: %v", info.SupportedProtos)
    				return nil, nil
    			},
    			MinVersion: tls.VersionTLS12,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    	if len(addrs) > 0 {
    		for i := range addrs {
    			klog.V(4).Infof("Checking addr  %s.", addrs[i].String())
    			ip, _, err := netutils.ParseCIDRSloppy(addrs[i].String())
    			if err != nil {
    				return nil, err
    			}
    			if memberOf(ip, family) {
    				if ip.IsGlobalUnicast() {
    					klog.V(4).Infof("IP found %v", ip)
    					return ip, nil
    				} else {
    					klog.V(4).Infof("Non-global unicast address found %v", ip)
    				}
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. src/os/dir_unix.go

    			dirents = append(dirents, de)
    		} else {
    			info, err := lstat(f.name + "/" + string(name))
    			if IsNotExist(err) {
    				// File disappeared between readdir + stat.
    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, nil, infos, err
    			}
    			infos = append(infos, info)
    		}
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.debug

    files : [ "org_tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug"]
    traces: {
        key  : "x@"
        value: {
          file_line_cols: {
            line      : 1
            col       : 1
          }
        }
    }
    traces: {
        key  : "x_y_sum@"
        value: {
          file_line_cols: {
            line      : 3
            col       : 1
          }
          file_line_cols: {
            line      : 4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 586 bytes
    - Viewed (0)
  8. src/os/dir_plan9.go

    				dirents = append(dirents, dirEntry{f})
    			} else {
    				infos = append(infos, f)
    			}
    		}
    		d.bufp += m
    		n--
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    type dirEntry struct {
    	fs *fileStat
    }
    
    func (de dirEntry) Name() string            { return de.fs.Name() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/io/ioutil/ioutil.go

    // If you must continue obtaining a list of [fs.FileInfo], you still can:
    //
    //	entries, err := os.ReadDir(dirname)
    //	if err != nil { ... }
    //	infos := make([]fs.FileInfo, 0, len(entries))
    //	for _, entry := range entries {
    //		info, err := entry.Info()
    //		if err != nil { ... }
    //		infos = append(infos, info)
    //	}
    func ReadDir(dirname string) ([]fs.FileInfo, error) {
    	f, err := os.Open(dirname)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    			}
    		} else {
    			klog.V(5).InfoS("Ignoring file", "path", path, "mode", mode)
    		}
    
    		return nil
    	})
    }
    
    // Handle filesystem notify event.
    // Files names:
    // - MUST NOT start with a '.'
    func (w *Watcher) handleCreateEvent(event fsnotify.Event) error {
    	klog.V(6).InfoS("Handling create event", "event", event)
    
    	fi, err := getStat(event)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top