Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for useIvy (3.6 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                resolve.expectGraph {
                    root(":", ":test:") {
                        module('org.test:module:1.0')
                    }
                }
            } else {
                fails ':checkDeps'
                if (useIvy() && !isGradleMetadataPublished()) {
                    failure.assertHasCause("Configuration 'default' in org.test:module:1.0 does not match the consumer attributes")
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    	//           case client: struct {
    	//               select (SessionState.version) {
    	//                   case VersionTLS10..VersionTLS12: Empty;
    	//                   case VersionTLS13: struct {
    	//                       uint64 use_by;
    	//                       uint32 age_add;
    	//                   };
    	//               };
    	//           };
    	//       };
    	//   } SessionState;
    	//
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager.go

    		return false
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	_, ok := m.usedBy[podUID]
    	return ok
    }
    
    func (m *UsernsManager) releaseWithLock(pod types.UID) {
    	v, ok := m.usedBy[pod]
    	if !ok {
    		klog.V(5).InfoS("pod user namespace allocation not present", "podUID", pod)
    		return
    	}
    	delete(m.usedBy, pod)
    
    	klog.V(5).InfoS("releasing pod user namespace allocation", "podUID", pod)
    	m.removed++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    class CanUpdateShapeWithAxis<int i> : Constraint<
      CPred<"quant::CastQuantizedTypeAttrFromExpressedType($_builder, $0, $1.getType(), " # i # ")">>;
    
    class UsedBy<string op> : Constraint<
      CPred<"llvm::isa<mlir::TFL::" # op # "Op>(*$0.getUsers().begin())">>;
    
    // When the op is passing-through, the output types of the quantized ops need
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/net/dnsconfig_unix.go

    					//  This option disables the behavior and makes glibc
    					//  perform the IPv6 and IPv4 requests sequentially."
    					conf.singleRequest = true
    				case s == "use-vc" || s == "usevc" || s == "tcp":
    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/crypto/tls/ech.go

    	b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) { b.AddBytes(payload) })
    	return b.Bytes()
    }
    
    func computeAndUpdateOuterECHExtension(outer, inner *clientHelloMsg, ech *echContext, useKey bool) error {
    	var encapKey []byte
    	if useKey {
    		encapKey = ech.encapsulatedKey
    	}
    	encodedInner, err := encodeInnerClientHello(inner, int(ech.config.MaxNameLength))
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/runtime/map_faststr.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/map_fast64.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/map_fast32.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                           << kNearZeroTolerance;
          min -= kNearZeroTolerance;
          max += kNearZeroTolerance;
        }
      }
    };
    
    template <typename VerifierT>
    bool UsedBy(Operation* op) {
      for (Operation* user : op->getUsers()) {
        if (llvm::isa_and_nonnull<VerifierT>(user)) return true;
      }
      return false;
    }
    
    template <typename VerifierT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top