Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for necessarily (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    usually see a dramatic drop off in startup time.
    Persistently slow build startup times are usually the result of problems in your init scripts.
    Double check that the work you’re doing there is necessary and performant.
    
    === Settings and _buildSrc_
    
    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/trace/base.go

    	switch v {
    	case version.Go122:
    		return e.args[len(go122.Specs()[e.typ].Args)-1:]
    	}
    	panic(fmt.Sprintf("unsupported version: go 1.%d", v))
    }
    
    // evTable contains the per-generation data necessary to
    // interpret an individual event.
    type evTable struct {
    	freq    frequency
    	strings dataTable[stringID, string]
    	stacks  dataTable[stackID, stack]
    	pcs     map[uint64]frame
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/coro.go

    		casgstatus(gnext, _Grunnable, _Grunning)
    	}
    
    	// Donate locked state.
    	if locked {
    		mp.lockedg.set(gnext)
    		gnext.lockedm.set(mp)
    	}
    
    	// Release the trace locker. We've completed all the necessary transitions..
    	if trace.ok() {
    		traceRelease(trace)
    	}
    
    	// Switch to gnext. Does not return.
    	gogo(&gnext.sched)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/testing/fstest/mapfs.go

    //
    // The map need not include parent directories for files contained
    // in the map; those will be synthesized if needed.
    // But a directory can still be included by setting the [MapFile.Mode]'s [fs.ModeDir] bit;
    // this may be necessary for detailed control over the directory's [fs.FileInfo]
    // or to create an empty directory.
    //
    // File system operations read directly from the map,
    // so that the file system can be changed by editing the map as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/publishing/import-restrictions.yaml

      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/client-go
      - k8s.io/klog
      - k8s.io/kube-openapi
      - k8s.io/utils
    
    # prevent core machinery from taking explicit v1 references unless
    # necessary
    - baseImportPath: "./staging/src/k8s.io/client-go/rest"
      excludeTests: true
      allowedImports:
      - k8s.io/apimachinery
      - k8s.io/client-go
      - k8s.io/klog
      - k8s.io/utils
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/namespace/kube.go

    	l := make(map[string]string)
    	l["istio-testing"] = "istio-test"
    	if cfg.Inject {
    		// do not add namespace labels when running compatibility tests since
    		// this disables the necessary object selectors
    		if !ctx.Settings().Compatibility {
    			if cfg.Revision != "" {
    				l[label.IoIstioRev.Name] = cfg.Revision
    			} else {
    				l["istio-injection"] = "enabled"
    			}
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/signature-v4-utils.go

    		return nil, ErrUnsignedHeaders
    	}
    	extractedSignedHeaders := make(http.Header)
    	for _, header := range signedHeaders {
    		// `host` will not be found in the headers, can be found in r.Host.
    		// but its always necessary that the list of signed headers containing host in it.
    		val, ok := reqHeaders[http.CanonicalHeaderKey(header)]
    		if !ok {
    			// try to set headers from Query String
    			val, ok = reqQueries[header]
    		}
    		if ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	Sym     Symbolizer
    	Obj     ObjTool
    	UI      UI
    
    	// HTTPServer is a function that should block serving http requests,
    	// including the handlers specified in args.  If non-nil, pprof will
    	// invoke this function if necessary to provide a web interface.
    	//
    	// If HTTPServer is nil, pprof will use its own internal HTTP server.
    	//
    	// A common use for a custom HTTPServer is to provide custom
    	// authentication checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/pack/pack.go

    	files    []string // Explicit list of files to be processed.
    	pad      int      // Padding bytes required at end of current archive file
    	matchAll bool     // match all files in archive
    }
    
    // archive opens (and if necessary creates) the named archive.
    func openArchive(name string, mode int, files []string) *Archive {
    	f, err := os.OpenFile(name, mode, 0666)
    	if err != nil {
    		log.Fatal(err)
    	}
    	var a *archive.Archive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    // Label returns the label used to describe a certain measurement.
    func Label(value int64, unit string) string {
    	return ScaledLabel(value, unit, "auto")
    }
    
    // ScaledLabel scales the passed-in measurement (if necessary) and
    // returns the label used to describe a float measurement.
    func ScaledLabel(value int64, fromUnit, toUnit string) string {
    	v, u := Scale(value, fromUnit, toUnit)
    	sv := strings.TrimSuffix(fmt.Sprintf("%.2f", v), ".00")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top