Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for sf (0.04 sec)

  1. cmd/batch-job-common-types.go

    // - sf.LowerBound < sz, when sf.LowerBound alone is specified
    // - sz < sf.UpperBound, when sf.UpperBound alone is specified
    // - sf.LowerBound < sz < sf.UpperBound when both are specified,
    func (sf BatchJobSizeFilter) InRange(sz int64) bool {
    	if sf.UpperBound > 0 && sz > int64(sf.UpperBound) {
    		return false
    	}
    
    	if sf.LowerBound > 0 && sz < int64(sf.LowerBound) {
    		return false
    	}
    	return true
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    	cs := &fake.Clientset{}
    	sf := informers.NewSharedInformerFactory(cs, time.Duration(1)*time.Second)
    	target := initializer.New(cs, nil, sf, &TestAuthorizer{}, nil, nil, nil)
    	wantExternalKubeInformerFactory := &WantExternalKubeInformerFactory{}
    	target.Initialize(wantExternalKubeInformerFactory)
    	if wantExternalKubeInformerFactory.sf != sf {
    		t.Errorf("expected informer factory to be initialized")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/runtime/symtabinl_test.go

    			}
    
    			sf := u.srcFunc(uf)
    
    			name := sf.name()
    			const namePrefix = "runtime."
    			if stringslite.HasPrefix(name, namePrefix) {
    				name = name[len(namePrefix):]
    			}
    			if !stringslite.HasPrefix(name, "tiu") {
    				t.Errorf("tiuTest+%#x: unexpected function %s", pc-pc1, name)
    			}
    
    			start := int(sf.startLine) - tiuStart
    			if start != wantStart[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top