Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 830 for reuse (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

            def block2 = blockingServer.expectAndBlock("block2")
    
            // Build 1 should download module 1 and reuse cached module 2 state
            mod1.pom.expectGet()
            mod1.artifact.expectGet()
    
            // Build 2 should download module 2 and reuse cached module 1 state
            mod2.pom.expectGet()
            mod2.artifact.expectGet()
    
            // Start build 1 then wait until it has run task 'a'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/lease_manager.go

    	}
    }
    
    // GetLease returns a lease based on requested ttl: if the cached previous
    // lease can be reused, reuse it; otherwise request a new one from etcd.
    func (l *leaseManager) GetLease(ctx context.Context, ttl int64) (clientv3.LeaseID, error) {
    	now := time.Now()
    	l.leaseMu.Lock()
    	defer l.leaseMu.Unlock()
    	// check if previous lease can be reused
    	reuseDurationSeconds := l.getReuseDurationSecondsLocked(ttl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                                log.debug("Cannot reuse, signing enforced on connection " + conn);
                            }
                            continue;
                        }
    
                        if ( !conn.getNegotiateResponse().canReuse(tc, forceSigning) ) {
                            if ( log.isTraceEnabled() ) {
                                log.trace("Cannot reuse, different config " + conn);
                            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # Verify PPC64 does not reuse a trampoline which is too far away.
    # This tests an edge case where the direct call relocation addend should
    # be ignored when computing the distance from the direct call to the
    # already placed trampoline
    [short] skip
    [!GOARCH:ppc64] [!GOARCH:ppc64le] skip
    [GOOS:aix] skip
    
    # Note, this program does not run. Presumably, 'DWORD $0' is simpler to
    # assembly 2^26 or so times.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_stack_darwin.c

    	p = pthread_self();
    	addr = pthread_get_stackaddr_np(p); // high address (!)
    	size = pthread_get_stacksize_np(p);
    
    	// bounds points into the Go stack. TSAN can't see the synchronization
    	// in Go around stack reuse.
    	_cgo_tsan_acquire();
    	bounds[0] = (uintptr)addr - size;
    	bounds[1] = (uintptr)addr;
    	_cgo_tsan_release();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 01:32:45 UTC 2024
    - 617 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingCrossVersionIntegrationTest.groovy

    }
    """
            expect:
            def block1 = blockingServer.expectAndBlock("block1")
            def block2 = blockingServer.expectAndBlock("block2")
    
            // Build 1 should download module 1 and check whether it can reuse module 2 files
            mod1.pom.expectGet()
            mod1.artifact.expectGet()
            if (previous.version <= GradleVersion.version("1.8")) {
                mod2.pom.expectGet()
                mod2.artifact.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. docs/contribute/concurrency.md

    Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
    
    These are the primary classes involved with establishing, sharing, and terminating connections:
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. test/codegen/issue33580.go

    // asmcheck
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we reuse large constant loads, if we can.
    // See issue 33580.
    
    package codegen
    
    const (
    	A = 7777777777777777
    	B = 8888888888888888
    )
    
    func f(x, y uint64) uint64 {
    	p := x & A
    	q := y & A
    	r := x & B
    	// amd64:-"MOVQ.*8888888888888888"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 07 15:16:26 UTC 2019
    - 459 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            // TODO:REUSE Refactor after removing reuse
            // This is horrendously bad.
            // We need to set the platform, _before_ the @Defaults rules of NativeBinaryRules assign the toolchain.
            // We can't just assign the toolchain here because the initializer would be closing over the toolchain which is not reusable, and this breaks model reuse.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      }
    
      // Maybe add a Transpose node for all operands (or reuse existing transposes).
      OpBuilder builder(op);
      builder.setInsertionPoint(op);
    
      for (OpOperand& operand : op->getOpOperands()) {
        // Try to push transpose further up.
        if (Operation* operand_op = operand.get().getDefiningOp())
          work_list->push_back(operand_op);
    
        // Try to reuse result transposes.
        TransposeOp transpose = ReuseExistingTranspose(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top