Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for sf (0.21 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. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    			if visited[f.typ] {
    				continue
    			}
    			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.PkgPath != "" { // unexported
    					continue
    				}
    				tag := sf.Tag.Get("json")
    				if tag == "-" {
    					continue
    				}
    				name, opts := parseTag(tag)
    				if !isValidTag(name) {
    					name = ""
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/project.go

    	line    string
    }
    
    type projectsList struct {
    	projects []projectType
    	projid   []projectType
    }
    
    func projFilesAreOK() error {
    	if sf, err := os.Lstat(projectsFile); err != nil || sf.Mode().IsRegular() {
    		if sf, err := os.Lstat(projidFile); err != nil || sf.Mode().IsRegular() {
    			return nil
    		}
    		return fmt.Errorf("%s exists but is not a plain file, cannot continue", projidFile)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

           <title>Incubating APIs for $title</title>
           <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
           <meta xmlns:xslthl="http://xslthl.sf.net" content="width=device-width, initial-scale=1" name="viewport">
           <link xmlns:xslthl="http://xslthl.sf.net" type="text/css" rel="stylesheet" href="https://docs.gradle.org/current/userguide/base.css">
    
        </head>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arch.go

    	instructions["JGT"] = x86.AJGT  /* greater than (signed) (ZF = 0 && SF = OF) */
    	instructions["JHI"] = x86.AJHI  /* higher (unsigned) (CF = 0 && ZF = 0) */
    	instructions["JHS"] = x86.AJCC  /* alternate */
    	instructions["JL"] = x86.AJLT   /* alternate */
    	instructions["JLE"] = x86.AJLE  /* less than or equal (signed) (ZF = 1 || SF != OF) */
    	instructions["JLO"] = x86.AJCS  /* alternate */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top