Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 782 for doBind (0.1 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

         */
        void removeStartupContext();
    
        /**
         * Disconnects from the process without waiting for further work.
         */
        void disconnect();
    
        /**
         * Stops doing work with the process's streams. Should block until no further asynchronous work is happening on the streams.
         */
        @Override
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. .github/DISCUSSION_TEMPLATE/questions.yml

            That's a lot of work they are doing, but if more FastAPI users came to help others like them just a little bit more, it would be much less effort for them (and you and me 😅).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                }
    
                // this has to be a separate "if" statement, to capture the case of: "-Dfoo=bar"
                if (addedToBuffer && arg.endsWith("\"")) {
                    // if we're building an argument, keep doing so.
                    // if this is the case of "-Dfoo=bar", then we need to adjust the buffer.
                    currentArg.setLength(currentArg.length() - 1);
    
                    cleaned.add(currentArg.toString());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget.go

    // periodically being refreshed. The pattern to use it is:
    //
    //	budget := newTimeBudget(...)
    //	...
    //	timeout := budget.takeAvailable()
    //	// Now you can spend at most timeout on doing stuff
    //	...
    //	// If you didn't use all timeout, return what you didn't use
    //	budget.returnUnused(<unused part of timeout>)
    //
    // NOTE: It's not recommended to be used concurrently from multiple threads -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

       * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
       * of common.collect a second time with the results of the first compilation on the classpath. Or
       * just back this out once we stop doing that (which we'll do after our internal GWT setup
       * changes).
       */
      @Override
      public ImmutableMap<Object, Collection<Object>> asMap() {
        return super.asMap();
      }
    
      private Object readResolve() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

       * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
       * of common.collect a second time with the results of the first compilation on the classpath. Or
       * just back this out once we stop doing that (which we'll do after our internal GWT setup
       * changes).
       */
      @Override
      public ImmutableMap<Object, Collection<Object>> asMap() {
        return super.asMap();
      }
    
      private Object readResolve() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. docs/en/docs/async.md

    But as you go away from the counter and sit at the table with a number for your turn, you can switch 🔀 your attention to your crush, and "work" ⏯ 🤓 on that. Then you are again doing something very "productive" as is flirting with your crush 😍.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/searchResults.jsp

    							data-order="${s.index}"
    						> <img src="${fe:url('/images/blank.png')}" alt="thumbnail"
    							data-src="${fe:url('/thumbnail/')}?docId=${f:u(doc.doc_id)}&queryId=${f:u(queryId)}" class="thumbnail"
    						>
    						</a>
    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/FreefairAspectJPluginSmokeTest.groovy

                    @Around("execution(* org.apache.http.util.Args.*(..))")
                    public Object stupidAdvice(ProceedingJoinPoint joinPoint) {
                        throw new RuntimeException("Doing stupid things");
                    }
                }
            """
            file("src/test/java/StupidAspectTest.aj") << """
                import org.junit.Test;
                import static org.junit.Assert.*;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/main_test.go

    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top