Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,554 for pats (0.06 sec)

  1. misc/go_android_exec/main.go

    	}
    	importPath = parts[0]
    	if importPath == "" || importPath == "." {
    		return errorf("current directory does not have a Go import path")
    	}
    	isStd, err = strconv.ParseBool(parts[1])
    	if err != nil {
    		return errorf("%v: non-boolean .Standard in output: %q", cmd, out)
    	}
    	if len(parts) >= 4 {
    		modPath = parts[2]
    		modDir = parts[3]
    	}
    
    	return importPath, isStd, modPath, modDir, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. cmd/object-multipart-handlers.go

    		return
    	}
    	if len(complMultipartUpload.Parts) == 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingPart), r.URL)
    		return
    	}
    
    	if !sort.SliceIsSorted(complMultipartUpload.Parts, func(i, j int) bool {
    		return complMultipartUpload.Parts[i].PartNumber < complMultipartUpload.Parts[j].PartNumber
    	}) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartOrder), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	// Split name into components.
    	var parts []string
    	last := 0
    	for i := 0; i < len(name); i++ {
    		if name[i] == '.' {
    			parts = append(parts, name[last:i])
    			last = i + 1
    		}
    	}
    	parts = append(parts, name[last:])
    
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. cmd/erasure-healing.go

    		for partIndex := 0; partIndex < len(latestMeta.Parts); partIndex++ {
    			partSize := latestMeta.Parts[partIndex].Size
    			partActualSize := latestMeta.Parts[partIndex].ActualSize
    			partModTime := latestMeta.Parts[partIndex].ModTime
    			partNumber := latestMeta.Parts[partIndex].Number
    			partIdx := latestMeta.Parts[partIndex].Index
    			partChecksums := latestMeta.Parts[partIndex].Checksums
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/locality_test.go

    		got := map[string]int{}
    		for _, r := range result.Responses {
    			// Hostname will take form of svc-v1-random. We want to extract just 'svc'
    			parts := strings.SplitN(r.Hostname, "-", 2)
    			if len(parts) < 2 {
    				return fmt.Errorf("unexpected hostname: %v", r)
    			}
    			gotHost := parts[0]
    			got[gotHost]++
    		}
    		scopes.Framework.Infof("Got responses: %+v", got)
    		for svc, reqs := range got {
    			expect := expected[svc]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	}
    	if allParts {
    		fi.Parts = make([]ObjectPartInfo, len(j.PartNumbers))
    		for i := range fi.Parts {
    			fi.Parts[i].Number = j.PartNumbers[i]
    			fi.Parts[i].Size = j.PartSizes[i]
    			if len(j.PartETags) == len(fi.Parts) {
    				fi.Parts[i].ETag = j.PartETags[i]
    			}
    			fi.Parts[i].ActualSize = j.PartActualSizes[i]
    			if len(j.PartIndices) == len(fi.Parts) {
    				fi.Parts[i].Index = j.PartIndices[i]
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	ppc64Suff    = re(`([BHWD])(ZU|Z|U|BR)?$`)
    	abiSuff      = re(`^(.+)<(ABI.+)>$`)
    )
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	// No work if no assembly files.
    	var sfiles []string
    	for _, fname := range pass.OtherFiles {
    		if strings.HasSuffix(fname, ".s") {
    			sfiles = append(sfiles, fname)
    		}
    	}
    	if sfiles == nil {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/internal/buildid/note.go

    	if err != nil {
    		return "", &fs.PathError{Path: name, Op: "parse", Err: err}
    	}
    
    	sect := mf.Section("__text")
    	if sect == nil {
    		// Every binary has a __text section. Something is wrong.
    		return "", &fs.PathError{Path: name, Op: "parse", Err: fmt.Errorf("cannot find __text section")}
    	}
    
    	// It should be in the first few bytes, but read a lot just in case,
    	// especially given our past problems on OS X with the build ID moving.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.iml</literal>
                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
                        Bear in mind that usually it is easier to use moduleName property instead of outputFile property.
                    </td>
                    <td/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. istioctl/pkg/analyze/analyze.go

    			fmt.Fprintf(cmd.ErrOrStderr(), "Skipping file %v, recognized file extensions are: %v\n", path, fileExtensions)
    			return nil
    		}
    
    		r, err := os.Open(path)
    		if err != nil {
    			return err
    		}
    		runtime.SetFinalizer(r, func(x *os.File) {
    			err = x.Close()
    			if err != nil {
    				log.Infof("file: %s is not closed: %v", path, err)
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top