Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,120 for promises (0.28 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	return p
    }
    
    // Merge merges all the profiles in profs into a single Profile.
    // Returns a new profile independent of the input profiles. The merged
    // profile is compacted to eliminate unused samples, locations,
    // functions and mappings. Profiles must have identical profile sample
    // and period types or the merge will fail. profile.Period of the
    // resulting profile will be the maximum of all profiles, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/concurrent/Deferred.java

            latch.countDown();
        }
    
        public Promise then(final Consumer<RESPONSE> consumer) {
            return promise.then(consumer);
        }
    
        public Promise error(final Consumer<Throwable> consumer) {
            return promise.error(consumer);
        }
    
        public Promise promise() {
            return promise;
        }
    
        public class Promise {
            public Promise then(final Consumer<RESPONSE> consumer) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. test/typeparam/issue50561.dir/diameter.go

    	endID uint32
    }
    
    type roundTripper struct {
    	promise map[transactionID]Promise[*ByteBuffer]
    	host    string
    	realm   string
    }
    
    func (r *roundTripper) OriginHost() string {
    	return r.host
    }
    func (r *roundTripper) OriginRealm() string {
    	return r.realm
    }
    
    func NewInboundHandler(host string, realm string, productName string) InboundHandler {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 22:58:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/fuse_mlrt_ops.mlir

    // CHECK-LABEL: @fuse_promise_return
    // CHECK-SAME: ([[p:%.*]]: !mlrt.promise, [[v:%.*]]: !tf_mlrt.tensor)
    func.func @fuse_promise_return(%p: !mlrt.promise, %v: !tf_mlrt.tensor) -> () {
      // CHECK: tf_mlrt.promise_return [[p]], [[v]]
      tf_mlrt.promise %p, %v
      func.return
    }
    
    // -----
    
    // CHECK-LABEL: @not_fuse_promise_return
    // CHECK-SAME: ([[p:%.*]]: !mlrt.promise, [[v:%.*]]: !tf_mlrt.tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 07 23:57:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

      }
    
      @JsFunction
      interface IThenOnRejectedCallbackFn<V extends @Nullable Object> {
        V onInvoke(Object p0);
      }
    }
    
    /** Subset of the elemental2 Promise API. */
    @JsType(isNative = true, namespace = JsPackage.GLOBAL, name = "Promise")
    class Promise<T extends @Nullable Object> implements IThenable<T> {
    
      @JsFunction
      interface PromiseExecutorCallbackFn<T extends @Nullable Object> {
        @JsFunction
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 24 18:27:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

    import org.apache.maven.model.building.ModelSource;
    import org.apache.maven.model.building.UrlModelSource;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.profiles.ProfileManager;
    import org.apache.maven.properties.internal.EnvironmentUtils;
    import org.apache.maven.repository.RepositorySystem;
    import org.apache.maven.wagon.events.TransferListener;
    
    /**
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java

                deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null));
            });
            th.start();
    
            final CountDownLatch latch = new CountDownLatch(1);
            deferred.promise().then(response -> latch.countDown());
            assertTrue(latch.await(10, TimeUnit.SECONDS));
        }
    
        @Test
        public void test_doneAfterResolve() throws Exception {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. docs/kms/README.md

    | [Gemalto KeySecure /Thales CipherTrust](https://github.com/minio/kes/wiki/Gemalto-KeySecure) | Local KMS. MinIO and KMS On-Premises.                             |
    | [Google Cloud Platform SecretManager](https://github.com/minio/kes/wiki/GCP-SecretManager)   | Cloud KMS. MinIO in combination with a managed KMS installation   |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    &"default"in i?{get:()=>i.default,enumerable:!0}:{value:i,enumerable:!0})),i);var h,l=C(()=>{h={platform:"",env:{},versions:{node:"14.17.6"}}});var Cb,te,je=C(()=>{l();Cb=0,te={readFileSync:i=>self[i]||"",statSync:()=>({mtimeMs:Cb++}),promises:{readFile:i=>Promise.resolve(self[i]||"")}}});var Qn=v((PO,uu)=>{l();"use strict";var lu=class{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if(typeof e.maxAge=="number"&&e.maxAge===0)throw new...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. src/internal/profile/profile.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package profile provides a representation of
    // github.com/google/pprof/proto/profile.proto and
    // methods to encode/decode/merge profiles in this format.
    package profile
    
    import (
    	"bytes"
    	"compress/gzip"
    	"fmt"
    	"io"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top