Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 218 for idea (0.09 sec)

  1. README.md

        * Automatic client code generation systems, for many languages.
    * Provide 2 interactive documentation web interfaces directly.
    
    ---
    
    We just scratched the surface, but you already get the idea of how it all works.
    
    Try changing the line with:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...from:
    
    ```Python
            ... "item_name": item.name ...
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    // updating the in-memory copy of the latest tree head (c.latest)
    // not the configuration file.
    // The when result explains when msg happened relative to our
    // previous idea of c.latest:
    // msgPast means msg was from before c.latest,
    // msgNow means msg was exactly c.latest, and
    // msgFuture means msg was from after c.latest, which has now been updated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. src/image/color/palette/palette.go

    package palette
    
    import "image/color"
    
    // Plan9 is a 256-color palette that partitions the 24-bit RGB space
    // into 4×4×4 subdivision, with 4 shades in each subcube. Compared to the
    // [WebSafe], the idea is to reduce the color resolution by dicing the
    // color cube into fewer cells, and to use the extra space to increase the
    // intensity resolution. This results in 16 gray shades (4 gray subcubes with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

              // because the service does not monitor the state of the future so if the exception is not
              // caught and forwarded to the service the task would stop executing but the service would
              // have no idea.
              // TODO(lukes): consider building everything in terms of ListenableScheduledFuture then
              // the AbstractService could monitor the future directly. Rescheduling is still hard...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if err != nil {
    		// We cannot parse it - must be some new schema we don't know about. We should assume we do not manage it.
    		// In theory, this should never happen, unless we decide a number was a bad idea in the future.
    		return cur, false, false
    	}
    	if curNum > ControllerVersion {
    		// A newer version owns this gateway, let them handle it
    		return cur, false, false
    	}
    	if curNum == ControllerVersion {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       check for thread assertion failures.
     *   <li>All delays and timeouts must use one of the constants {@code SHORT_DELAY_MS}, {@code
     *       SMALL_DELAY_MS}, {@code MEDIUM_DELAY_MS}, {@code LONG_DELAY_MS}. The idea here is that a
     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/modfile.go

    			if cfg.BuildMod == "readonly" {
    				// The module's requirements are consistent; only the "// indirect"
    				// comments that are wrong. But those are only guaranteed to be accurate
    				// after a "go mod tidy" — it's a good idea to run those before
    				// committing a change, but it's certainly not mandatory.
    			} else {
    				return true
    			}
    		}
    	}
    
    	for _, r := range modFile.Replace {
    		if r.New != i.replace[r.Old] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    You can define an automatic module as part of a multi-project that otherwise defines real modules (e.g. as an adapter to another library).
    While this works fine in the Gradle build, such automatic module projects are not correctly recognized by IDEA/Eclipse at the moment.
    You can work around it by manually adding the Jar built for the automatic module to the dependencies of the project that does not find it in the IDE's UI.
    ===
    
    [[sec:java_library_classes_usage]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. pkg/dns/client/dns.go

    // search process down to just two DNS queries. This will eliminate unnecessary upstream DNS queries from the
    // agent, reduce load on DNS servers and improve overall latency. This idea was borrowed and adapted from
    // the autopath plugin in coredns. The implementation here is very different from auto path though.
    // Autopath does inline computation to see if the given query could potentially match something else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    ### Concurrency and Burgers
    
    This idea of **asynchronous** code described above is also sometimes called **"concurrency"**. It is different from **"parallelism"**.
    
    **Concurrency** and **parallelism** both relate to "different things happening more or less at the same time".
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top