Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,330 for ppkg (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	if tv, ok := pass.TypesInfo.Types[x]; ok && tv.IsValue() {
    		return lockPath(pass.Pkg, tv.Type, nil)
    	}
    	return nil
    }
    
    // lockPath returns a typePath describing the location of a lock value
    // contained in typ. If there is no contained lock, it returns nil.
    //
    // The seen map is used to short-circuit infinite recursion due to type cycles.
    func lockPath(tpkg *types.Package, typ types.Type, seen map[types.Type]bool) typePath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.xfdl.webform"/>
      <mime-type type="application/vnd.xmi+xml"/>
      <mime-type type="application/vnd.xmpie.cpkg"/>
      <mime-type type="application/vnd.xmpie.dpkg"/>
      <mime-type type="application/vnd.xmpie.plan"/>
      <mime-type type="application/vnd.xmpie.ppkg"/>
      <mime-type type="application/vnd.xmpie.xlim"/>
      <mime-type type="application/vnd.yamaha.hv-dic">
        <glob pattern="*.hvd"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/sym.go

    				panic("bad index")
    			}
    			ctxt.nonpkgrefs = append(ctxt.nonpkgrefs, rs)
    			nonpkgidx++
    			return
    		}
    		if k, ok := ctxt.pkgIdx[pkg]; ok {
    			rs.PkgIdx = k
    			return
    		}
    		rs.PkgIdx = ipkg
    		ctxt.pkgIdx[pkg] = ipkg
    		ipkg++
    	})
    }
    
    // Returns whether s is a non-package symbol, which needs to be referenced
    // by name instead of by index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    			t.Errorf("unexpected dependency: %s imports %v", pkg, bad)
    		}
    	}
    }
    
    var buildIgnore = []byte("\n//go:build ignore")
    
    func findImports(pkg string) ([]string, error) {
    	vpkg := pkg
    	if strings.HasPrefix(pkg, "golang.org") {
    		vpkg = "vendor/" + pkg
    	}
    	dir := filepath.Join(Default.GOROOT, "src", vpkg)
    	files, err := os.ReadDir(dir)
    	if err != nil {
    		return nil, err
    	}
    	var imports []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator.go

    	m := make(map[string]*ast.File)
    
    	f, err := parser.ParseFile(fset, filePath, nil, parser.ParseComments)
    	if err != nil {
    		fmt.Println(err)
    		return nil
    	}
    
    	m[filePath] = f
    	apkg, _ := ast.NewPackage(fset, m, nil, nil)
    
    	return doc.New(apkg, "", 0)
    }
    
    func fmtRawDoc(rawDoc string) string {
    	var buffer bytes.Buffer
    	delPrevChar := func() {
    		if buffer.Len() > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 03 07:33:58 UTC 2017
    - 7K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testsupport.go

    // testmain code when "go test -cover" is in effect. It is not
    // intended to be used other than internally by the Go command's
    // generated code.
    func ProcessCoverTestDir(dir string, cfile string, cm string, cpkg string, w io.Writer) error {
    	cmode := coverage.ParseCounterMode(cm)
    	if cmode == coverage.CtrModeInvalid {
    		return fmt.Errorf("invalid counter mode %q", cm)
    	}
    
    	// Emit meta-data and counter data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. hack/make-rules/test.sh

        | xargs -I{} -n 1 -P "${KUBE_COVERPROCS}" \
        bash -c "set -o pipefail; _pkg=\"\$0\"; _pkg_out=\${_pkg//\//_}; \
          go test ${goflags[*]:+${goflags[*]}} \
            ${KUBE_TIMEOUT} \
            -cover -covermode=\"${KUBE_COVERMODE}\" \
            -coverprofile=\"${cover_report_dir}/\${_pkg}/${cover_profile}\" \
            \"\${_pkg}\" \
            ${testargs[*]:+${testargs[*]}} \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_patchmod.txt

    	example.net/pkgremoved v0.1.0 => ./prpkg
    	example.net/pkgremoved v0.1.1 => ./prpkg
    
    	example.net/pkgremoved v0.2.0 => ./prmod
    	example.net/pkgremoved v0.2.1 => ./prmod
    
    	example.net/pkgremoved v0.3.0 => ./prpkg
    	example.net/pkgremoved v0.3.1 => ./prmod
    
    	example.net/pkgremoved v0.4.0 => ./prmod
    	example.net/pkgremoved v0.4.1 => ./prpkg
    )
    -- other/go.mod --
    module example.net/other
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg archive/tar, const TypeBlock ideal-char
    pkg archive/tar, const TypeChar ideal-char
    pkg archive/tar, const TypeCont ideal-char
    pkg archive/tar, const TypeDir ideal-char
    pkg archive/tar, const TypeFifo ideal-char
    pkg archive/tar, const TypeLink ideal-char
    pkg archive/tar, const TypeReg ideal-char
    pkg archive/tar, const TypeRegA ideal-char
    pkg archive/tar, const TypeSymlink ideal-char
    pkg archive/tar, const TypeXGlobalHeader ideal-char
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type URL //deprecated
    pkg p1, var Byte uint8
    pkg p1, var ByteConv []uint8
    pkg p1, var ByteFunc func(uint8) int32
    pkg p1, var ChecksumError error
    pkg p1, var SIPtr *SI
    pkg p1, var SIPtr2 *SI
    pkg p1, var SIVal SI
    pkg p1, var StrConv string
    pkg p1, var V string
    pkg p1, var V1 uint64
    pkg p1, var V2 p2.Twoer
    pkg p1, var VError Error
    pkg p1, var VError //deprecated
    pkg p1, var X I
    pkg p1, var X0 int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top