Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,694 for findIn (1.46 sec)

  1. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    		}
    		tag := language.Make(f[1])
    		tags = append(tags, tag)
    		t.byTag[tag.String()] = f[2]
    	}
    	t.matcher = language.NewMatcher(tags)
    	return t
    }
    
    // find finds the text to use for the given language tag preferences.
    func (t *text) find(prefs []language.Tag) string {
    	tag, _, _ := t.matcher.Match(prefs...)
    	s := t.byTag[tag.String()]
    	if strings.HasPrefix(s, "RTL ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    			newConditions = append(newConditions, condition)
    		}
    	}
    
    	removed = len(*conditions) != len(newConditions)
    	*conditions = newConditions
    
    	return removed
    }
    
    // FindStatusCondition finds the conditionType in conditions.
    func FindStatusCondition(conditions []metav1.Condition, conditionType string) *metav1.Condition {
    	for i := range conditions {
    		if conditions[i].Type == conditionType {
    			return &conditions[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/custom-response.md

    {"message": "Hello World"}
    ```
    
    ... wird die Response jetzt Folgendes zurückgeben:
    
    ```json
    {
      "message": "Hello World"
    }
    ```
    
    Natürlich werden Sie wahrscheinlich viel bessere Möglichkeiten finden, Vorteil daraus zu ziehen, als JSON zu formatieren. 😉
    
    ## Standard-Response-Klasse
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:05:12 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/schema-extra-example.md

    ### OpenAPI-spezifische `examples`
    
    Schon bevor **JSON Schema** `examples` unterstützte, unterstützte OpenAPI ein anderes Feld, das auch `examples` genannt wurde.
    
    Diese **OpenAPI-spezifischen** `examples` finden sich in einem anderen Abschnitt der OpenAPI-Spezifikation. Sie sind **Details für jede *Pfadoperation***, nicht für jedes JSON-Schema.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:53 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/import.go

    	// and return m, dir, ImportMissingError.
    	fmt.Fprintf(os.Stderr, "go: finding module for package %s\n", path)
    
    	mg, err := rs.Graph(ctx)
    	if err != nil {
    		return module.Version{}, err
    	}
    
    	candidates, err := QueryPackages(ctx, path, "latest", mg.Selected, CheckAllowed)
    	if err != nil {
    		if errors.Is(err, fs.ErrNotExist) {
    			// Return "cannot find module providing package […]" instead of whatever
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/seh.go

    		if handler != 0 {
    			sb := ldr.MakeSymbolUpdater(rels.At(i).Sym())
    			r, _ := sb.AddRel(objabi.R_KEEP)
    			r.SetSym(handler)
    		}
    	}
    	return nil
    }
    
    // findHandlerInXDataAMD64 finds the symbol in the .xdata section that
    // corresponds to the exception handler.
    // Reference:
    // https://learn.microsoft.com/en-us/cpp/build/exception-handling-x64#struct-unwind_info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kube/kclient/index.go

    // Index maintains a simple index over an informer
    type Index[K comparable, O controllers.ComparableObject] struct {
    	mu      sync.RWMutex
    	objects map[K]sets.Set[types.NamespacedName]
    	client  Informer[O]
    }
    
    // Lookup finds all objects matching a given key
    func (i *Index[K, O]) Lookup(k K) []O {
    	i.mu.RLock()
    	defer i.mu.RUnlock()
    	res := make([]O, 0)
    	for obj := range i.objects[k] {
    		item := i.client.Get(obj.Name, obj.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/saved_model_utils.h

    // FunctionDef. Callers must ensure `library` outlives the returned map.
    gtl::FlatMap<StringPiece, const tensorflow::FunctionDef*, StringPieceHasher>
    FunctionNameToFunctionDefMap(const FunctionDefLibrary& library);
    
    // Finds the "signatures" object in the object graph, and fills a mapping of
    // each signature's name to the corresponding function's node in the object
    // graph.
    Status GetSignaturesMap(const SavedObjectGraph& saved_objects,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 04:18:52 UTC 2022
    - 5.7K 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. 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)
Back to top