Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,960 for usedBy (0.35 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

                usedBy.add(loaderId);
                return this;
            }
    
            public void release(ClassLoaderId loaderId) {
                if (usedBy.isEmpty()) {
                    throw new IllegalStateException("Cannot release already released classloader: " + classLoader);
                }
    
                if (usedBy.remove(loaderId)) {
                    if (usedBy.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                return failure();
              }
            }
          }
    
          // An op with float inputs and outputs are expected when it's used by a
          // NumericVerify op. Skip this op.
          if (enable_verify && UsedBy<VerifierT>(quantizing_op)) {
            continue;
          }
    
          bool is_operand_or_result_modified = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                                expectedAttributes = [format: 'custom', 'org.gradle.status': GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release']
                            } else {
                                if (GradleMetadataResolveRunner.useIvy()) {
                                    // Ivy doesn't derive any variant
                                    expectedTargetVariant = 'default'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. 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)
  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_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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

         */
        boolean getPublishedModulesHaveAttributes() { gradleMetadataPublished }
    
        String getVariantToTest() {
            if (gradleMetadataPublished || useIvy()) {
                'customVariant'
            } else {
                'runtime'
            }
        }
    
        def setup() {
            repository {
                'org.test:moduleA:1.0'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
Back to top