Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 238 for findMin (0.16 sec)

  1. docs/de/docs/tutorial/background-tasks.md

    Es ist immer noch möglich, `BackgroundTask` allein in FastAPI zu verwenden, aber Sie müssen das Objekt in Ihrem Code erstellen und eine Starlette-`Response` zurückgeben, die es enthält.
    
    Weitere Details finden Sie in der <a href="https://www.starlette.io/background/" class="external-link" target="_blank">offiziellen Starlette-Dokumentation für Hintergrundtasks</a>.
    
    ## Vorbehalt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 12 14:15:29 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	// GetObjectConvertor is the ObjectConvertor appropriate for the requested object.
    	GetObjectConvertor() runtime.ObjectConvertor
    	// GetEquivalentResourceMapper is the EquivalentResourceMapper appropriate for finding equivalent resources and expected kind for the requested object.
    	GetEquivalentResourceMapper() runtime.EquivalentResourceMapper
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    # because it cannot resolve x and y simultaneously.
    ! go mod tidy
    
    cmp go.mod go.mod.orig
    
    stderr '^go: found example\.net/y in example\.net/y v0.2.0$'
    stderr '^go: finding module for package example\.net/x$'
    
    	# TODO: This error message should be clearer — it doesn't indicate why v0.2.0-pre is required.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv.go

    		//
    		// Notably, this works even if we can't run 'go env GOROOT' as a
    		// subprocess.
    
    		cwd, err := os.Getwd()
    		if err != nil {
    			gorootErr = fmt.Errorf("finding GOROOT: %w", err)
    			return
    		}
    
    		dir := cwd
    		for {
    			parent := filepath.Dir(dir)
    			if parent == dir {
    				// dir is either "." or only a volume name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    [[sec:abm_algorithm]]
    === Variant attribute matching algorithm
    
    Finding the best variant can get complicated when there are many different variants available for a component and many different attributes. Gradle's dependency resolution engine performs the following algorithm when finding the best result (or failing):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/net/listen_test.go

    			}
    		}
    	}
    
    	for _, ifi := range []*Interface{loopbackInterface(), nil} {
    		// Note that multicast interface assignment by system
    		// is not recommended because it usually relies on
    		// routing stuff for finding out an appropriate
    		// nexthop containing both network and link layer
    		// adjacencies.
    		if ifi == nil || !*testIPv4 {
    			continue
    		}
    		for _, tt := range ipv4MulticastListenerTests {
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

             * unresolvable dependencies defined in the configuration.
             *
             * We can probably do better by inspecting the runtime classpath and finding out which
             * Configurations are part of it and only traversing any extra file collections manually.
             */
            private Collection<File> collectClasspathFiles(SourceSet sourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // Bisect prints tracing logs to standard error and the minimal change sets
    // to standard output.
    //
    // # Command Line Flags
    //
    // Bisect supports the following command-line flags:
    //
    //	-max=M
    //
    // Stop after finding M minimal change sets. The default is no maximum, meaning to run until
    // all changes that provoke a failure have been identified.
    //
    //	-maxset=S
    //
    // Disallow change sets larger than S elements. The default is no maximum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    This chapter is about finding out why a cache miss happened.
    If you have a cache hit which you didn't expect we suggest to declare whatever change you expected to trigger the cache miss as an input to the task.
    
    [[finding_problems]]
    == Finding problems with task output caching
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/dom.go

    type blockAndIndex struct {
    	b     *Block
    	index int // index is the number of successor edges of b that have already been explored.
    }
    
    // postorderWithNumbering provides a DFS postordering.
    // This seems to make loop-finding more robust.
    func postorderWithNumbering(f *Func, ponums []int32) []*Block {
    	seen := f.Cache.allocBoolSlice(f.NumBlocks())
    	defer f.Cache.freeBoolSlice(seen)
    
    	// result ordering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top