Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 365 for Nname (0.03 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    			u.deleteFiles(files)
    			continue
    		}
    		fname, err := u.createReport(earliest[expiry], expiry, files, lastWeek)
    		if err != nil {
    			u.logger.Printf("Failed to create report for %s: %v", expiry, err)
    			continue
    		}
    		if fname != "" {
    			u.logger.Printf("Ready to upload: %s", filepath.Base(fname))
    			todo.readyfiles = append(todo.readyfiles, fname)
    		}
    	}
    	return todo.readyfiles, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    		os.Exit(1)
    	}
    
    	if len(files) == 0 {
    		fmt.Fprintf(os.Stderr, "expect at least one new mutation to be written to testdata\n")
    		os.Exit(1)
    	}
    
    	fname := files[0].Name()
    	contents, err := ioutil.ReadFile(filepath.Join(dir, fname))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if bytes.Equal(contents, []byte("aa")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

                                final String aname = attr.getNodeName();
                                final boolean isPrefix = aname.startsWith("xmlns:");
    
                                if (isPrefix || "xmlns".equals(aname)) {
                                    final int index = aname.indexOf(':');
                                    final String p = isPrefix ? aname.substring(index + 1) : StringUtil.EMPTY;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/debug/plan9obj/file.go

    				elt, ok := fname[eltIdx]
    				if !ok {
    					return &formatError{-1, "bad filename code", eltIdx}
    				}
    				if n := len(ts.Name); n > 0 && ts.Name[n-1] != '/' {
    					ts.Name += "/"
    				}
    				ts.Name += elt
    			}
    		}
    		switch s.typ {
    		case 'f':
    			fname[uint16(s.value)] = ts.Name
    		}
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	return syms, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	fixwd()
    	return stat(path, edir)
    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	fixwd()
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
    	fixwd()
    	return mount(fd, afd, old, flag, aname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. src/time/zoneinfo_windows.go

    		return "", err
    	}
    	defer k.Close()
    
    	names, err := k.ReadSubKeyNames()
    	if err != nil {
    		return "", err
    	}
    	for _, name := range names {
    		matched, err := matchZoneKey(k, name, stdname, dstname)
    		if err == nil && matched {
    			return name, nil
    		}
    	}
    	return "", errors.New(`English name for time zone "` + stdname + `" not found in registry`)
    }
    
    // extractCAPS extracts capital letters from description desc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    		if !containerStatus.Ready {
    			fmt.Fprintf(writer, "WARNING: Pod %s Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name)
    		}
    	}
    	for _, containerStatus := range pod.Status.InitContainerStatuses {
    		if !containerStatus.Ready {
    			fmt.Fprintf(writer, "WARNING: Pod %s Init Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name)
    		}
    	}
    
    	if ignoreUnmeshed {
    		return
    	}
    
    	if !isMeshed(pod) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration.h

    // lifted quantizable functions.
    class PreCalibrationComponent : public Component {
     public:
      // Name of the post-training quantization pre-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_pre_calibration";
    
      explicit PreCalibrationComponent(absl::Nonnull<MLIRContext*> ctx);
    
      absl::StatusOr<ModuleOp> Run(
          ModuleOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    				name := "arg"
    				if isret {
    					name = "ret"
    				}
    				if argnum > 0 {
    					name += strconv.Itoa(argnum)
    				}
    				names = []*ast.Ident{ast.NewIdent(name)}
    			}
    			argnum += len(names)
    
    			// Create variable for each name.
    			for _, id := range names {
    				name := id.Name
    				for _, c := range cc {
    					outer := name + c.outer
    					v := asmVar{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/cc_op_gen.cc

      TF_CHECK_OK(cc->Close());
      TF_CHECK_OK(h->Close());
    }
    
    string MakeInternal(const string& fname) {
      auto dot_pos = fname.rfind('.');
      if (dot_pos == string::npos) {
        return strings::StrCat(fname, "_internal");
      } else {
        return strings::StrCat(fname.substr(0, dot_pos), "_internal",
                               fname.substr(dot_pos));
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top