Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for sf (0.05 sec)

  1. src/reflect/visiblefields_test.go

    		name:  "SF2",
    		index: []int{3},
    	}, {
    		name:  "SF1",
    		index: []int{3, 0},
    	}, {
    		name:  "SF",
    		index: []int{3, 0, 0},
    	}, {
    		name:  "L",
    		index: []int{4},
    	}},
    }, {
    	testName: "EmbeddedPointerStruct",
    	val: struct {
    		*SF
    	}{},
    	expect: []structField{{
    		name:  "SF",
    		index: []int{0},
    	}, {
    		name:  "F",
    		index: []int{0, 0},
    	}},
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. src/net/http/h2_error.go

    	}
    	src := reflect.ValueOf(e)
    	srcType := src.Type()
    	numField := srcType.NumField()
    	if dstType.NumField() != numField {
    		return false
    	}
    	for i := 0; i < numField; i++ {
    		sf := srcType.Field(i)
    		df := dstType.Field(i)
    		if sf.Name != df.Name || !sf.Type.ConvertibleTo(df.Type) {
    			return false
    		}
    	}
    	for i := 0; i < numField; i++ {
    		df := dst.Field(i)
    		df.Set(src.Field(i).Convert(df.Type()))
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 812 bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/AbstractPmdPluginVersionIntegrationTest.groovy

            """
                <ruleset name="custom"
                    xmlns="http://pmd.sf.net/ruleset/1.0.0"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
                    xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
    
                    <description>Custom rule set</description>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. test/copy1.go

    // compiler.
    
    package main
    
    func main() {
    
    	si := make([]int, 8)
    	sf := make([]float64, 8)
    
    	_ = copy()        // ERROR "not enough arguments"
    	_ = copy(1, 2, 3) // ERROR "too many arguments"
    
    	_ = copy(si, "hi") // ERROR "have different element types(.*int.*string| int and byte)"
    	_ = copy(si, sf)   // ERROR "have different element types.*int.*float64"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 851 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    	_, h := sh.GetScopeAndFqdn()
    	vss := make([]*resource.Instance, 0)
    	for sf, resources := range meshGatewayHosts {
    		mghScope, mgh := sf.GetScopeAndFqdn()
    		hName := host.Name(h)
    		mghName := host.Name(mgh)
    		if mghScope != util.ExportToAllNamespaces || !hName.Matches(mghName) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/custom-xslthl-config.xml

      -->
    <xslthl-config>
        <highlighter id="groovy" file="groovy-hl.xml" />
        <highlighter id="java" file="java-hl.xml" />
        <highlighter id="kotlin" file="kotlin-hl.xml" />
        <namespace prefix="xslthl" uri="http://xslthl.sf.net" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 921 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

            toolingApi.withConnection { connection -> connection.newBuild().run() }
    
            then:
            noExceptionThrown()
        }
    
        def "tooling api restores java logging at end of build"() {
            //(SF) checking if the logger level was not overridden.
            //this gives some confidence that the LogManager was not reset
            given:
            LogManager.getLogManager().getLogger("").setLevel(OFF);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    var _ fmt.Stringer = stackExcerpt(nil)
    
    func (se stackExcerpt) String() string {
    	var sb strings.Builder
    	sb.WriteString("[")
    	for i, sf := range se {
    		if i > 0 {
    			sb.WriteString(", ")
    		}
    		sb.WriteString(sf.file)
    		sb.WriteString(":")
    		sb.WriteString(strconv.FormatInt(int64(sf.line), 10))
    	}
    	sb.WriteString("]")
    	return sb.String()
    }
    
    func (wgc *waitGroupCounter) Wait() {
    	wgc.wg.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  9. test/codegen/floats.go

    	z := f3 / 0.5
    
    	return x, y, z
    }
    
    func indexLoad(b0 []float32, b1 float32, idx int) float32 {
    	// arm64:`FMOVS\s\(R[0-9]+\)\(R[0-9]+<<2\),\sF[0-9]+`
    	return b0[idx] * b1
    }
    
    func indexStore(b0 []float64, b1 float64, idx int) {
    	// arm64:`FMOVD\sF[0-9]+,\s\(R[0-9]+\)\(R[0-9]+<<3\)`
    	b0[idx] = b1
    }
    
    // ----------- //
    //    Fused    //
    // ----------- //
    
    func FusedAdd32(x, y, z float32) float32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/format/format.go

    	Dur       float64 `json:"dur,omitempty"`
    	PID       uint64  `json:"pid"`
    	TID       uint64  `json:"tid"`
    	ID        uint64  `json:"id,omitempty"`
    	BindPoint string  `json:"bp,omitempty"`
    	Stack     int     `json:"sf,omitempty"`
    	EndStack  int     `json:"esf,omitempty"`
    	Arg       any     `json:"args,omitempty"`
    	Cname     string  `json:"cname,omitempty"`
    	Category  string  `json:"cat,omitempty"`
    }
    
    type Frame struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top