Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 159 for Nname (0.04 sec)

  1. src/path/filepath/path_windows_test.go

    			continue
    		}
    	}
    }
    
    // checkVolume8dot3Setting runs "fsutil 8dot3name query c:" command
    // (where c: is vol parameter) to discover "8dot3 name creation state".
    // The state is combination of 2 flags. The global flag controls if it
    // is per volume or global setting:
    //
    //	0 - Enable 8dot3 name creation on all volumes on the system
    //	1 - Disable 8dot3 name creation on all volumes on the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. 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)
  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/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)
  5. 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)
  6. operator/cmd/mesh/manifest-generate_test.go

    func validateReferentialIntegrity(t *testing.T, objs object.K8sObjects, cname string, deploymentSelector map[string]string) {
    	t.Run(cname, func(t *testing.T) {
    		deployment := mustFindObject(t, objs, cname, name.DeploymentStr)
    		service := mustFindObject(t, objs, cname, name.ServiceStr)
    		pdb := mustFindObject(t, objs, cname, name.PDBStr)
    		hpa := mustFindObject(t, objs, cname, name.HPAStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    }
    
    func (p *Package) annotateFile(name string, fd io.Writer) {
    	fset := token.NewFileSet()
    	content, err := os.ReadFile(name)
    	if err != nil {
    		log.Fatalf("cover: %s: %s", name, err)
    	}
    	parsedFile, err := parser.ParseFile(fset, name, content, parser.ParseComments)
    	if err != nil {
    		log.Fatalf("cover: %s: %s", name, err)
    	}
    
    	file := &File{
    		fset:    fset,
    		name:    name,
    		content: content,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, \
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    	SYS_BIND                     = 104 // { int bind(int s, caddr_t name, \
    	SYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, \
    	SYS_LISTEN                   = 106 // { int listen(int s, int backlog); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	cmd, args := input[:1], input[1:]
    	name := cmd[0]
    
    	c := pprofCommands[name]
    	if c == nil {
    		// Attempt splitting digits on abbreviated commands (eg top10)
    		if d := tailDigitsRE.FindString(name); d != "" && d != name {
    			name = name[:len(name)-len(d)]
    			cmd[0], args = name, append([]string{d}, args...)
    			c = pprofCommands[name]
    		}
    	}
    	if c == nil {
    		if _, ok := configHelp[name]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_386.go

    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, \
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    	SYS_BIND                     = 104 // { int bind(int s, caddr_t name, \
    	SYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, \
    	SYS_LISTEN                   = 106 // { int listen(int s, int backlog); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top