Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 173 for findMin (0.2 sec)

  1. pkg/controller/volume/persistentvolume/provision_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            wrapTestWithProvisionCalls([]provisionCall{}, testSyncClaim),
    		},
    		{
    			// volume provision for PVC scheduled
    			"11-23 - skip finding PV and provision for PVC annotated with AnnSelectedNode",
    			newVolumeArray("volume11-23", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimDelete, classCopper),
    			[]*v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    			}
    			// Check the ClusterSet IPs.
    			assert.Equal(t, svc.ClusterVIPs.GetAddressesFor(ic.Cluster()), expectedIPs)
    			return
    		}
    	}
    
    	if expectMCSService {
    		t.Fatalf("failed finding ServiceInstance for %s", serviceImportClusterSetHost)
    	}
    }
    
    func (ic *serviceImportCacheImpl) createServiceImport(t *testing.T, importType mcsapi.ServiceImportType, vips []string) {
    	t.Helper()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    			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)
    			}
    			var value any
    
    			if len(results) > 0 && len(results[0]) > 0 {
    				if len(results) > 1 || len(results[0]) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/dependencies/index.md

    Beispiele hierfür finden Sie in den nächsten Kapiteln zu relationalen und NoSQL-Datenbanken, Sicherheit usw.
    
    ## **FastAPI**-Kompatibilität
    
    Die Einfachheit des Dependency Injection Systems macht **FastAPI** kompatibel mit:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    	}
    	templates, err := b.injectionTemplates()
    	if err != nil {
    		// deal with this when we call Build() to avoid making the New signature unwieldy
    		b.errs = multierror.Append(b.errs, fmt.Errorf("failed finding injection templates on clusters %v", err))
    	}
    	b.templates = templates
    
    	return b.WithClusters(clusters...)
    }
    
    type builder struct {
    	ctx resource.Context
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/simple-oauth2.md

        full_name = user_dict["full_name"],
        disabled = user_dict["disabled"],
        hashed_password = user_dict["hashed_password"],
    )
    ```
    
    !!! info
        Eine ausführlichere Erklärung von `**user_dict` finden Sie in [der Dokumentation für **Extra Modelle**](../extra-models.md#uber-user_indict){.internal-link target=_blank}.
    
    ## Den Token zurückgeben
    
    Die Response des `token`-Endpunkts muss ein JSON-Objekt sein.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/match.go

    // func (t *Tag) setTagsFrom(id Tag) {
    // 	t.LangID = id.LangID
    // 	t.ScriptID = id.ScriptID
    // 	t.RegionID = id.RegionID
    // }
    
    // Tag Matching
    // CLDR defines an algorithm for finding the best match between two sets of language
    // tags. The basic algorithm defines how to score a possible match and then find
    // the match with the best score
    // (see https://www.unicode.org/reports/tr35/#LanguageMatching).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    // function's line table.
    func walkFilenames(ctxt *Link, funcs []loader.Sym, f func(*sym.CompilationUnit, goobj.CUFileIndex)) {
    	ldr := ctxt.loader
    
    	// Loop through all functions, finding the filenames we need.
    	for _, s := range funcs {
    		fi := ldr.FuncInfo(s)
    		if !fi.Valid() {
    			continue
    		}
    		fi.Preload()
    
    		cu := ldr.SymUnit(s)
    		for i, nf := 0, int(fi.NumFile()); i < nf; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // +enum
    type ParameterNotFoundActionType string
    
    const (
    	// Ignore means that an error finding params for a binding is ignored
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Fail means that an error finding params for a binding is ignored
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top