Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for sf (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	}
    	if specVersion == nil && len(specVersion.SelectableFields) == 0 {
    		return nil
    	}
    	selectableFields := make([]any, len(specVersion.SelectableFields))
    	for i, sf := range specVersion.SelectableFields {
    		props := map[string]any{
    			"fieldPath": strings.TrimPrefix(sf.JSONPath, "."),
    		}
    		selectableFields[i] = props
    	}
    	return selectableFields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        private Runnable runBuildInSingleUseDaemon(StartParameterInternal startParameter, DaemonParameters daemonParameters, DaemonRequestContext requestContext) {
            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    		"focus":                "f",
    		"ignore":               "i",
    		"prune_from":           "prunefrom",
    		"hide":                 "h",
    		"show":                 "s",
    		"show_from":            "sf",
    		"tagfocus":             "tf",
    		"tagignore":            "ti",
    		"tagshow":              "ts",
    		"taghide":              "th",
    		"mean":                 "mean",
    		"sample_index":         "si",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy_test.go

    		}
    		c := r.Header["Connection"]
    		var cf []string
    		for _, f := range c {
    			for _, sf := range strings.Split(f, ",") {
    				if sf = strings.TrimSpace(sf); sf != "" {
    					cf = append(cf, sf)
    				}
    			}
    		}
    		slices.Sort(cf)
    		expectedValues := []string{"Upgrade", someConnHeader, fakeConnectionToken}
    		slices.Sort(expectedValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jettyServlet = "org.eclipse.jetty:jetty-servlet"
        val jettyUtil = "org.eclipse.jetty:jetty-util"
        val jettyWebApp = "org.eclipse.jetty:jetty-webapp"
        val joptSimple = "net.sf.jopt-simple:jopt-simple"
        val jsoup = "org.jsoup:jsoup"
        val jtar = "org.kamranzafar:jtar"
        val kotlinCoroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    //
    //	GOOS=goos GOARCH=goarch ./make.bash -distpack
    //
    // To test that the module downloads are usable with the go command:
    //
    //	./make.bash -distpack
    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    //	ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v
    //	GOPROXY=file:///tmp/goproxy GOTOOLCHAIN=$(sed 1q ../VERSION) gotip version
    //
    // gotip can be replaced with an older released Go version once there is one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

        runtimeOnly project(":distributions-full")
    
        userGuideTask 'xalan:xalan:2.7.1'
        userGuideTask 'xerces:xercesImpl:2.11.0'
        userGuideTask 'net.sf.xslthl:xslthl:2.0.1'
    
        userGuideStyleSheets 'net.sf.docbook:docbook-xsl:1.75.2:resources@zip'
    
        jquery "jquery:jquery.min:3.5.1@js"
    
        testImplementation project(":base-services")
        testImplementation project(":core")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    func freeSpecial(s *special, p unsafe.Pointer, size uintptr) {
    	switch s.kind {
    	case _KindSpecialFinalizer:
    		sf := (*specialfinalizer)(unsafe.Pointer(s))
    		queuefinalizer(p, sf.fn, sf.nret, sf.fint, sf.ot)
    		lock(&mheap_.speciallock)
    		mheap_.specialfinalizeralloc.free(unsafe.Pointer(sf))
    		unlock(&mheap_.speciallock)
    	case _KindSpecialWeakHandle:
    		sw := (*specialWeakHandle)(unsafe.Pointer(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    	if s.id == 0 {
    		return true
    	}
    	stk := s.table.stacks.mustGet(s.id)
    	for _, pc := range stk.pcs {
    		f := s.table.pcs[pc]
    		sf := StackFrame{
    			PC:   f.pc,
    			Func: s.table.strings.mustGet(f.funcID),
    			File: s.table.strings.mustGet(f.fileID),
    			Line: f.line,
    		}
    		if !yield(sf) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    	Fprint(f, "X")
    }
    
    var byteFormatterSlice = []byteFormatter{'h', 'e', 'l', 'l', 'o'}
    
    type writeStringFormatter string
    
    func (sf writeStringFormatter) Format(f State, c rune) {
    	if sw, ok := f.(io.StringWriter); ok {
    		sw.WriteString("***" + string(sf) + "***")
    	}
    }
    
    var fmtTests = []struct {
    	fmt string
    	val any
    	out string
    }{
    	{"%d", 12345, "12345"},
    	{"%v", 12345, "12345"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top