Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 279 for saturation (0.32 sec)

  1. docs/de/docs/advanced/settings.md

    Wenn Sie beispielsweise eine Funktion haben:
    
    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
        return f"Hello {salutation} {name}"
    ```
    
    könnte Ihr Programm so ausgeführt werden:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/go/printer/comment.go

    			//	/*
    			//	 * Comment
    			//	 * text here.
    			//	 */
    			// Should not happen, since it will not work well as a
    			// doc comment, but if it does, just ignore:
    			// reformatting it will only make the situation worse.
    			return list
    		}
    		text = text[2 : len(text)-2] // cut /* and */
    	} else if strings.HasPrefix(list[0].Text, "//") {
    		kind = "//"
    		var b strings.Builder
    		for _, c := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

    @ElementTypesAreNonnullByDefault
    abstract class CollectionFuture<V extends @Nullable Object, C extends @Nullable Object>
        extends AggregateFuture<V, C> {
      /*
       * We access this field racily but safely. For discussion of a similar situation, see the comments
       * on the fields of TimeoutFuture. This field is slightly different from the fields discussed
       * there: cancel() never reads this field, only writes to it. That makes the race here completely
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/go/terminal_test.go

    	// strange: on Linux, Read returns EIO, and on at least some versions of
    	// macOS, unread output may be discarded (see https://go.dev/issue/57141).
    	//
    	// To avoid that situation, we keep the child process running until the
    	// parent has finished reading from the PTY, at which point we unblock the
    	// child by closing its stdin pipe.
    	stdin, err := cmd.StdinPipe()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/settings.md

    For example, if you have a function:
    
    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
        return f"Hello {salutation} {name}"
    ```
    
    your program could execute like this:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/runtime/cgo/callbacks.go

    //
    // We need to export the symbol crosscall2 in order to support
    // callbacks from shared libraries. This applies regardless of
    // linking mode.
    //
    // Compatibility note: SWIG uses crosscall2 in exactly one situation:
    // to call _cgo_panic using the pattern shown below. We need to keep
    // that pattern working. In particular, crosscall2 actually takes four
    // arguments, but it works to call it with three arguments when
    // calling _cgo_panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. docs/site-replication/README.md

    # Automatic Site Replication
    
    This feature allows multiple independent MinIO sites (or clusters) that are using the same external IDentity Provider (IDP) to be configured as replicas. In this situation the set of replica sites are referred to as peer sites or just sites. When site-replication is enabled on a set of sites, the following changes are replicated to all other sites:
    
    - Creation and deletion of buckets and objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

     * there is a single differing attribute between all available variants that is missing from the request.
     * <p>
     * In this situation, we can provide a very brief message pointing to the exact solution needed.
     */
    public abstract class MissingAttributeAmbiguousGraphVariantsFailureDescriber extends AmbiguousGraphVariantsFailureDescriber {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pkg/controller/deployment/recreate.go

    				// Don't count pods in terminal state.
    				continue
    			case v1.PodUnknown:
    				// v1.PodUnknown is a deprecated status.
    				// This logic is kept for backward compatibility.
    				// This used to happen in situation like when the node is temporarily disconnected from the cluster.
    				// If we can't be sure that the pod is not running, we have to count it.
    				return true
    			default:
    				// Pod is not in terminal phase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_xla_call_module_op_to_bfloat16.cc

        const StringRef serialized_stablehlo_module) {
      // StableHLO module is empty often because the XlaCallModuleOp is already
      // deserialized, e.g. after invoking XlaCallModuleDeserializationPass. We
      // don't handle this situation.
      if (serialized_stablehlo_module.empty()) {
        return absl::InvalidArgumentError("StableHLO module is empty.");
      }
    
      MLIRContext context;
      OwningOpRef<ModuleOp> stablehlo_module_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top