Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 475 for allDone (0.32 sec)

  1. guava/src/com/google/common/collect/ForwardingCollection.java

     *
     * <p><b>Warning:</b> The methods of {@code ForwardingCollection} forward <b>indiscriminately</b> to
     * the methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change
     * the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code addAll} as well, either providing your own implementation, or delegating to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

    avoid write barriers in the depths of the scheduler.
    
    `getg()` and `getg().m.curg`
    ----------------------------
    
    To get the current user `g`, use `getg().m.curg`.
    
    `getg()` alone returns the current `g`, but when executing on the
    system or signal stacks, this will return the current M's "g0" or
    "gsignal", respectively. This is usually not what you want.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingNavigableSet.java

     *
     * <p><b>Warning:</b> The methods of {@code ForwardingNavigableSet} forward <i>indiscriminately</i>
     * to the methods of the delegate. For example, overriding {@link #add} alone <i>will not</i> change
     * the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code addAll} as well, either providing your own implementation, or delegating to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/query-params-str-validations.md

    http://localhost:8000/items/
    ```
    
    gehen, wird der Default für `q` verwendet: `["foo", "bar"]`, und als Response erhalten Sie:
    
    ```JSON
    {
      "q": [
        "foo",
        "bar"
      ]
    }
    ```
    
    #### `list` alleine verwenden
    
    Sie können auch `list` direkt verwenden, anstelle von `List[str]` (oder `list[str]` in Python 3.9+):
    
    === "Python 3.9+"
    
        ```Python hl_lines="9"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:59 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. hack/update-vendor-licenses.sh

      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    rm -f "${LICENSES_DIR}/LICENSE"
    rm -rf "${LICENSES_DIR}/vendor"
    rm -rf "${LICENSES_DIR}/third_party"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    				tset2, err := computeTermSetInternal(t.Type(), seen, depth+1)
    				if err != nil {
    					return nil, err
    				}
    				terms = tset2.terms
    			case *types.TypeParam, *types.Union:
    				// A stand-alone type parameter or union is not permitted as union
    				// term.
    				return nil, fmt.Errorf("invalid union term %T", t)
    			default:
    				if t.Type() == types.Typ[types.Invalid] {
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/os/dir_windows.go

    }
    
    const (
    	// dirBufSize is the size of the dirInfo buffer.
    	// The buffer must be big enough to hold at least a single entry.
    	// The filename alone can be 512 bytes (MAX_PATH*2), and the fixed part of
    	// the FILE_ID_BOTH_DIR_INFO structure is 105 bytes, so dirBufSize
    	// should not be set below 1024 bytes (512+105+safety buffer).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/const.go

    // provided (only needed for int/uint sizes).
    //
    // If rounded != nil, *rounded is set to the rounded value of x for
    // representable floating-point and complex values, and to an Int
    // value for integer values; it is left alone otherwise.
    // It is ok to provide the addressof the first argument for rounded.
    //
    // The check parameter may be nil if representableConst is invoked
    // (indirectly) through an exported API call (AssignableTo, ConvertibleTo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

      llvm::DenseSet<Operation*> do_not_touch;  // Funcs referenced by non-call ops
    
      // Find all users of functions that are not through a CallOp. Those
      // are functions we need to leave alone.
      module->walk([&](SymbolUserOpInterface op) {
        if (llvm::isa<CallOpInterface>(op.getOperation())) return;
        // SymbolUserOpInterface doesn't tell us which attributes contain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/cache_test.go

    		t.Fatal(err)
    	}
    	c.OutputFile(entry.OutputID)
    	checkTime(fmt.Sprintf("%x-a", id), mtime2)
    	checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime2)
    
    	// Trim should leave everything alone: it's all too new.
    	if err := c.Trim(); err != nil {
    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: Trim is unsupported (%v)", err)
    		}
    		t.Fatal(err)
    	}
    	if _, err := c.Get(id); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top