Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,355 for doPing (0.14 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

                tasks.getByPath(':c:ping').dependsOn ":a:ping", ":b:ping"
                tasks.getByPath(':d:ping').finalizedBy ":c:ping"
            """
    
            expect:
            blockingServer.expect(':d:ping')
            blockingServer.expectConcurrent(':a:ping', ':b:ping')
            blockingServer.expect(':c:ping')
    
            run 'd:ping'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/README.md

        off-node to all types of service IPs, and traffic coming from pods to all types of
        service IPs. (We *must* do this in `prerouting`, because the choice of endpoint IP may
        affect whether the packet then gets routed along the input path or the forward path.)
    
      - We do the DNAT for outbound traffic in `output`: this covers traffic coming from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

         * <p>The default {@link AbstractFuture} implementation throws {@code InterruptedException} if
         * the current thread is interrupted before or during the call, even if the value is already
         * available.
         *
         * @throws InterruptedException if the current thread was interrupted before or during the call
         *     (optional but recommended).
         * @throws CancellationException {@inheritDoc}
         */
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/grappler.h

    // Infer OpInfo::TensorProperties for graph nodes inputs/outputs.
    //
    // Typical use case, is to infer tensor properties from a graph, before doing
    // optimization pass. Nodes modified during optimization pass have to be
    // invalidated, to prevent further incorrect optimizations based on wrong shape
    // and data type properties.
    typedef struct TF_GraphProperties TF_GraphProperties;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/crypto/aes/cipher_asm.go

    // license that can be found in the LICENSE file.
    
    //go:build (amd64 || arm64 || ppc64 || ppc64le) && !purego
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/internal/alias"
    	"crypto/internal/boring"
    	"internal/cpu"
    	"internal/goarch"
    )
    
    // defined in asm_*.s
    
    //go:noescape
    func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

         *
         * No synchronization is applied to the target, so this method may be called for a given target concurrently by multiple threads.
         * Other threads may also be doing work with the target when this method is called.
         * This method is responsible for any synchronization required to create the model.
         */
        Object create(BuildState target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/net/http/httptrace/trace.go

    	// lookup. The contents of the slice should not be mutated.
    	Addrs []net.IPAddr
    
    	// Err is any error that occurred during the DNS lookup.
    	Err error
    
    	// Coalesced is whether the Addrs were shared with another
    	// caller who was doing the same DNS lookup concurrently.
    	Coalesced bool
    }
    
    func (t *ClientTrace) hasNetHooks() bool {
    	if t == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/runtime/tracemap.go

    // unique ID. Subsequent puts of the same data will return
    // the same ID. The zero value is ready to use.
    //
    // Uses a region-based allocation scheme internally, and
    // reset clears the whole map.
    //
    // It avoids doing any high-level Go operations so it's safe
    // to use even in sensitive contexts.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/log/slog/internal/benchmarks/benchmarks.go

    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/TimeoutHandler.java

         * The returned {@link Timeout} object must be used to stop the timeout once the thread has completed
         * the work that this timeout was supposed to limit, otherwise it may be interrupted doing
         * some other work later.
         */
        Timeout start(Thread taskExecutionThread, Duration timeoutInMillis, Describable workUnitDescription, @Nullable BuildOperationRef buildOperationRef);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top