Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for sf (0.03 sec)

  1. src/cmd/go/internal/modindex/read.go

    	return sf.d.stringAt(sf.pos + sourceFilePkgName)
    }
    func (sf *sourceFile) ignoreFile() bool {
    	return sf.d.boolAt(sf.pos + sourceFileIgnoreFile)
    }
    func (sf *sourceFile) binaryOnly() bool {
    	return sf.d.boolAt(sf.pos + sourceFileBinaryOnly)
    }
    func (sf *sourceFile) cgoDirectives() string {
    	return sf.d.stringAt(sf.pos + sourceFileCgoDirectives)
    }
    func (sf *sourceFile) goBuildConstraint() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    		}
    		uc := us.UnstructuredContent()
    
    		selectableFieldsSet = fields.Set{}
    		for _, sf := range a.selectableFieldSet {
    			if sf.err != nil {
    				return nil, fmt.Errorf("unexpected error parsing jsonPath: %w", sf.err)
    			}
    			results, err := sf.fieldPath.FindResults(uc)
    			if err != nil {
    				return nil, fmt.Errorf("unexpected error finding value with jsonPath: %w", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticdata/data.go

    	// Reusing funcsymsmu to also cover this package lookup
    	// avoids a general, broader, expensive package lookup mutex.
    	funcsymsmu.Lock()
    	sf, existed := s.Pkg.LookupOK(ir.FuncSymName(s))
    	if !existed {
    		funcsyms = append(funcsyms, n)
    	}
    	funcsymsmu.Unlock()
    
    	return sf.Linksym()
    }
    
    func GlobalLinksym(n *ir.Name) *obj.LSym {
    	if n.Op() != ir.ONAME || n.Class != ir.PEXTERN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            """
                <ruleset name="auxclasspath"
                    xmlns="http://pmd.sf.net/ruleset/2.0.0"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xsi:schemaLocation="http://pmd.sf.net/ruleset/2.0.0 http://pmd.sf.net/ruleset_2_0_0.xsd"
                    xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_2_0_0.xsd">
    
                    <rule name="Auxclasspath"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    	idx, found := ft.symtab[s]
    	if !found {
    		sf := symFixups{inlIndex: -1, defseen: true, doffsets: doffsets}
    		ft.svec = append(ft.svec, sf)
    		ft.symtab[s] = len(ft.svec) - 1
    	} else {
    		sf := &ft.svec[idx]
    		sf.doffsets = doffsets
    		sf.defseen = true
    	}
    }
    
    func (ft *DwarfFixupTable) processFixups(slot int, s *LSym) {
    	sf := &ft.svec[slot]
    	for _, f := range sf.fixups {
    		dfound := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. operator/pkg/manifest/shared.go

    }
    
    // validateSetFlags validates that setFlags all have path=value format.
    func validateSetFlags(setFlags []string) error {
    	for _, sf := range setFlags {
    		pv := strings.Split(sf, "=")
    		if len(pv) != 2 {
    			return fmt.Errorf("set flag %s has incorrect format, must be path=value", sf)
    		}
    		if pv[0] == "profile" && pv[1] == "external" {
    			return fmt.Errorf("\"external\" profile has been removed, use \"remote\" profile instead")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    			}
    			visited[f.typ] = true
    
    			// Scan f.typ for fields to include.
    			for i := 0; i < f.typ.NumField(); i++ {
    				sf := f.typ.Field(i)
    				if sf.Anonymous {
    					t := sf.Type
    					if t.Kind() == reflect.Pointer {
    						t = t.Elem()
    					}
    					if !sf.IsExported() && t.Kind() != reflect.Struct {
    						// Ignore embedded fields of unexported non-struct types.
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. src/runtime/tracestack.go

    			continue
    		}
    
    		u, uf := newInlineUnwinder(fi, callPC)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && elideWrapperCalling(lastFuncID) {
    				// ignore wrappers
    			} else if more := skipOrAdd(uf.pc + 1); !more {
    				break outer
    			}
    			lastFuncID = sf.funcID
    		}
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    					// Skip, because tracebackPCs (inside runtime.Callers) would too.
    					continue
    				}
    				ci.nextPC = unext.pc + 1
    				break
    			}
    		}
    		ci.frames = append(ci.frames, Frame{
    			PC:        pc,
    			Func:      f,
    			Function:  funcNameForPrint(sf.name()),
    			Entry:     entry,
    			startLine: int(sf.startLine),
    			funcInfo:  funcInfo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/runtime/race.go

    func raceSymbolizeCode(ctx *symbolizeCodeContext) {
    	pc := ctx.pc
    	fi := findfunc(pc)
    	if fi.valid() {
    		u, uf := newInlineUnwinder(fi, pc)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && u.isInlined(uf) {
    				// Ignore wrappers, unless we're at the outermost frame of u.
    				// A non-inlined wrapper frame always means we have a physical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top