Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for sf (0.02 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/httputil/reverseproxy.go

    func removeHopByHopHeaders(h http.Header) {
    	// RFC 7230, section 6.1: Remove headers listed in the "Connection" header.
    	for _, f := range h["Connection"] {
    		for _, sf := range strings.Split(f, ",") {
    			if sf = textproto.TrimString(sf); sf != "" {
    				h.Del(sf)
    			}
    		}
    	}
    	// RFC 2616, section 13.5.1: Remove a set of known hop-by-hop headers.
    	// This behavior is superseded by the RFC 7230 Connection header, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            Pair<Collection<SourceFolder>, Collection<SourceFolder>> partitionedFolders = CollectionUtils.partition(sourceFolder,  sf-> sf.getPath().contains(".."));
    
            Collection<SourceFolder> externalSourceFolders = partitionedFolders.getLeft();
            Collection<SourceFolder> regularSourceFolders = partitionedFolders.getRight();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top