Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 600 for demand (0.14 sec)

  1. src/go/types/check.go

    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*ast.File               // package files
    	versions      map[*ast.File]string      // maps files to version strings (each file has an entry); shared with Info.FileVersions if present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. README.md

    <a href="https://training.talkpython.fm/fastapi-courses" target="_blank" title="FastAPI video courses on demand from people you trust"><img src="https://fastapi.tiangolo.com/img/sponsors/talkpython-v2.jpg"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	// server should treat that identically to how it would treat the client having explicitly
    	// subscribed to *"
    	// NOTE: this means you cannot subscribe to nothing, which is useful for on-demand loading; to workaround this
    	// Istio clients will send and initial request both subscribing+unsubscribing to `*`.
    	if len(request.ResourceNamesSubscribe) == 0 {
    		wildcard = true
    	}
    	return res.UnsortedList(), wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        @Override
        public void setMaxWorkerCount(int maxWorkerCount) {
            parallelismConfiguration.setMaxWorkerCount(maxWorkerCount);
        }
    
        /**
         * If the configure-on-demand mode is active
         */
        @Incubating
        public boolean isConfigureOnDemand() {
            return configureOnDemand;
        }
    
        @Override
        public String toString() {
            return "StartParameter{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*syntax.File              // list of package files
    	versions      map[*syntax.PosBase]string  // maps files to version strings (each file has an entry); shared with Info.FileVersions if present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * The Kotlin DSL will not support `model {}` elements. This is part of the link:https://blog.gradle.org/state-and-future-of-the-gradle-software-model[discontinued Gradle Software Model].
    * Enabling the incubating configuration on demand feature is not recommended as it can lead to very hard-to-diagnose problems.
    
    Read more in the <<kotlin_dsl.adoc#kotlin_dsl,Gradle Kotlin DSL Primer>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/composite_builds.html">Composite Builds</a></li>
                            <li><a href="../userguide/multi_project_configuration_and_execution.html">Configuration on Demand</a></li>
                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#developing-tasks" aria-expanded="false" aria-controls="developing-tasks">Developing Tasks</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      }
    
      // This test verifies that legalization for ops with symbol reference attribute
      // is not attempted even if they are in allow-list. XLA op kernels for these
      // ops compile the function to HLO on-demand which won't work in our case as it
      // may contain unsupported ops in the fallback nor we provide XlaCompiler to
      // the kernel. Using a allowed op Atan2 to protect against future addition of a
      // new op with a symbol ref.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Lists.java

       *
       * <p>The outer list is unmodifiable, but reflects the latest state of the source list. The inner
       * lists are sublist views of the original list, produced on demand using {@link List#subList(int,
       * int)}, and are subject to all the usual caveats about modification as explained in that API.
       *
       * @param list the list to return consecutive sublists of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/strings/strings.go

    	// things unpleasant. But it's so rare we barge in assuming it's
    	// fine. It could also shrink but that falls out naturally.
    
    	// The output buffer b is initialized on demand, the first
    	// time a character differs.
    	var b Builder
    
    	for i, c := range s {
    		r := mapping(c)
    		if r == c && c != utf8.RuneError {
    			continue
    		}
    
    		var width int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top