Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3801 - 3810 of 3,913 for getE (0.02 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

                    if (e.key == null) {
                        return true;
                    }
                }
            }
            return false;
        }
    
        @Override
        public V get(final Object key) {
            final Entry<K, V>[] tbl = mapTable;
            if (key != null) {
                final int hashCode = key.hashCode();
                final int index = (hashCode & 0x7FFFFFFF) % tbl.length;
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. docs/de/docs/deployment/docker.md

    * Erstellen Sie eine `main.py`-Datei mit:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/docker.md

    * Crie um arquivo `main.py` com:
    
    ```Python
    from typing import Optional
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  4. docs/debugging/xl-meta/main.go

    						if err != nil {
    							return err
    						}
    
    						splitData, err := rs.Split(m.mapped)
    						if err != nil {
    							return err
    						}
    						// Do separate encode, verify we get the same result.
    						err = rs.Encode(splitData)
    						if err != nil {
    							return err
    						}
    						misMatches := 0
    						for idx, sh := range parityData {
    							calculated := splitData[idx]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 05 11:57:44 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    func (c *Connection) reconnected() {
    	c.updateState(StateConnectionError)
    	c.reconnects.Add(1)
    
    	// Drain the outQueue, so any blocked messages can be sent.
    	// We keep the queue, but start draining it, if it gets full.
    	stopDraining := make(chan struct{})
    	var wg sync.WaitGroup
    	wg.Add(1)
    	defer func() {
    		close(stopDraining)
    		wg.Wait()
    	}()
    	go func() {
    		defer wg.Done()
    		for {
    			select {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

                than specifying a value for finalName directly in the plugin configuration section. It is also useful to
                ensure that - for example - a List-typed parameter which expects items of type Artifact doesn't get a List
                full of Strings.
              </description>
            </field>
            <field>
              <name>description</name>
              <version>1.0.0+</version>
              <type>String</type>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Aug 16 14:16:22 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/bigger-applications.md

    {!../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    Da der Pfad jeder *Pfadoperation* mit `/` beginnen muss, wie in:
    
    ```Python hl_lines="1"
    @router.get("/{item_id}")
    async def read_item(item_id: str):
        ...
    ```
    
    ... darf das Präfix kein abschließendes `/` enthalten.
    
    Das Präfix lautet in diesem Fall also `/items`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. cmd/erasure-healing-common_test.go

    	if err != nil {
    		t.Fatalf("Failed to read xl meta data %v", err)
    	}
    
    	fi, err := getLatestFileInfo(ctx, partsMetadata, s.defaultParityCount, errs)
    	if err != nil {
    		t.Fatalf("Failed to get quorum consistent fileInfo %v", err)
    	}
    
    	erasureDisks, _, _ = listOnlineDisks(erasureDisks, partsMetadata, errs, readQuorum)
    
    	filteredDisks, _, dataErrsPerDisk := disksWithAllParts(ctx, erasureDisks, partsMetadata,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 15:19:10 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    * Drain pods created from ReplicaSets in 'kubectl drain' ([#23689](https://github.com/kubernetes/kubernetes/pull/23689), [@maclof](https://github.com/maclof))
    * GCI: Update the command to get the image ([#24987](https://github.com/kubernetes/kubernetes/pull/24987), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        for (double value : MANY_VALUES) {
          manyValuesAccumulatorByRepeatedAdd.add(value);
        }
    
        manyValuesAccumulatorByAddAndAddAll = new StatsAccumulator();
        manyValuesAccumulatorByAddAndAddAll.add(MANY_VALUES.get(0));
        manyValuesAccumulatorByAddAndAddAll.addAll(MANY_VALUES.subList(1, MANY_VALUES.size()));
    
        manyValuesAccumulatorByAddAllStats = new StatsAccumulator();
        manyValuesAccumulatorByAddAllStats.addAll(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top