Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for prefix (0.58 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

            fun String.runIfNotEmpty(action: String.() -> String): String =
                if (this.isEmpty()) this else action()
    
            return pathWithWildcards.split("**").joinToString(separator = ".*", prefix = "^", postfix = "$") { outerPart ->
                outerPart.runIfNotEmpty {
                    split("*").joinToString("[^/]*") { innerPart ->
                        innerPart.runIfNotEmpty(Regex::escape)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    	if err != nil {
    		return err
    	}
    	z, err := zip.NewReader(f, fi.Size())
    	if err != nil {
    		return err
    	}
    	prefix := mod.Path + "@" + mod.Version + "/"
    	for _, f := range z.File {
    		if !strings.HasPrefix(f.Name, prefix) {
    			return fmt.Errorf("zip for %s has unexpected file %s", prefix[:len(prefix)-1], f.Name)
    		}
    	}
    
    	if err := f.Close(); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

                                { append(lower.classId.asFqNameString().replace("Mutable", "(Mutable)")) },
                            )
                            printCollectionIfNotEmpty(lower.typeArguments, prefix = "<", postfix = ">") { typeArgument ->
                                typeRenderer.typeProjectionRenderer.renderTypeProjection(analysisSession, typeArgument, typeRenderer, this)
                            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	if save {
    		dir, err := setTmpDir(o.UI)
    		if err != nil {
    			return nil, err
    		}
    
    		prefix := "pprof."
    		if len(p.Mapping) > 0 && p.Mapping[0].File != "" {
    			prefix += filepath.Base(p.Mapping[0].File) + "."
    		}
    		for _, s := range p.SampleType {
    			prefix += s.Type + "."
    		}
    
    		tempFile, err := newTempFile(dir, prefix, ".pb.gz")
    		if err == nil {
    			if err = p.Write(tempFile); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Special is a special symbol, printed as a prefix plus another
    // value.
    type Special struct {
    	Prefix string
    	Val    AST
    }
    
    func (s *Special) print(ps *printState) {
    	prefix := s.Prefix
    	if ps.llvmStyle {
    		switch prefix {
    		case "TLS wrapper function for ":
    			prefix = "thread-local wrapper routine for "
    		case "TLS init function for ":
    			prefix = "thread-local initialization routine for "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stdlib_test.go

    						// to trigger runtime/stdlib-only error output.
    						// In both cases, the code should typecheck.
    						expectErrors = false
    						break
    					}
    					const prefix = "-lang="
    					if strings.HasPrefix(arg, prefix) {
    						goVersion = arg[len(prefix):]
    					}
    				}
    			}
    		}
    
    		// parse and type-check file
    		if testing.Verbose() {
    			fmt.Println("\t", filename)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check_test.go

    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    	if i := bytes.Index(src, []byte("-")); i < 0 || len(bytes.TrimSpace(src[:i])) != 0 {
    		return nil // comment doesn't start with a "-"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    	// exported so that they become global symbols
    	// that the C code can refer to.
    	prefix := "_C"
    	if *gccgo && n.IsVar() {
    		prefix = "C"
    	}
    	n.Mangle = prefix + n.Kind + "_" + n.Go
    }
    
    func (f *File) isMangledName(s string) bool {
    	prefix := "_C"
    	if strings.HasPrefix(s, prefix) {
    		t := s[len(prefix):]
    		for _, k := range nameKinds {
    			if strings.HasPrefix(t, k+"_") {
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    					// possible modules.
    					for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    						if v, ok := rs.rootSelected(prefix); ok && v != "none" {
    							m := module.Version{Path: prefix, Version: v}
    							r := resolveReplacement(m)
    							keep[r] = true
    						}
    					}
    					continue
    				}
    			}
    
    			mg, _ := rs.Graph(ctx)
    			for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/cmd/objdump/main.go

    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    //
    //	file:line
    //	 address: assembly
    //	 address: assembly
    //	 ...
    //
    // Each stanza gives the disassembly for a contiguous range of addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top