Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 89 for findMin (0.17 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/namespace_policy.go

    	existingRoleBindings = append(existingRoleBindings, roleBinding)
    	namespaceRoleBindings[namespace] = existingRoleBindings
    }
    
    func init() {
    	addNamespaceRole(metav1.NamespaceSystem, rbacv1.Role{
    		// role for finding authentication config info for starting a server
    		ObjectMeta: metav1.ObjectMeta{Name: "extension-apiserver-authentication-reader"},
    		Rules: []rbacv1.PolicyRule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

                    default:
                        throw new RuntimeException(String.format("Cannot handle resource URI %s", resource));
                }
            } catch (Exception e) {
                throw new RuntimeException("Error finding resource: " + name, e);
            }
        }
    
        @Nonnull
        private TestFile fromFile(URL resource) throws URISyntaxException {
            return new TestFile(resource.toURI());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/mfinal_test.go

    			v := new(int)
    			runtime.SetFinalizer(v, fin)
    		}
    	})
    }
    
    // One chunk must be exactly one sizeclass in size.
    // It should be a sizeclass not used much by others, so we
    // have a greater chance of finding adjacent ones.
    // size class 19: 320 byte objects, 25 per page, 1 page alloc at a time
    const objsize = 320
    
    type objtype [objsize]byte
    
    func adjChunks() (*objtype, *objtype) {
    	var s []*objtype
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/visit.go

    //			visit(x)
    //			return ir.DoChildren(x, do)
    //		}
    //		do(n)
    //	}
    //
    // The Any function illustrates a different simplification of the pattern,
    // visiting each node and then its children, recursively, until finding
    // a node x for which cond(x) returns true, at which point the entire
    // traversal stops and returns true.
    //
    //	func Any(n ir.Node, cond(ir.Node) bool) bool {
    //		if n == nil {
    //			return false
    //		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. docs/de/docs/project-generation.md

    Weitere Informationen hierzu finden Sie in der Dokumentation des Repos.
    
    ## Full Stack FastAPI MongoDB
    
    ... könnte später kommen, abhängig von meiner verfügbaren Zeit und anderen Faktoren. 😅 🎉
    
    ## Modelle für maschinelles Lernen mit spaCy und FastAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/websockets.md

    ## Mehr Informationen
    
    Weitere Informationen zu Optionen finden Sie in der Dokumentation von Starlette:
    
    * <a href="https://www.starlette.io/websockets/" class="external-link" target="_blank">Die `WebSocket`-Klasse</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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