Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,903 for usedBy (0.2 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. test/used.go

    	x < x                  // ERROR "x < x .* not used"
    	x >= x                 // ERROR "x >= x .* not used"
    	x > x                  // ERROR "x > x .* not used"
    	*tp                    // ERROR "\*tp .* not used"
    	slice[0]               // ERROR "slice\[0\] .* not used"
    	m[1]                   // ERROR "m\[1\] .* not used"
    	len(slice)             // ERROR "len\(slice\) .* not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 08:39:17 UTC 2020
    - 6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.ResourceQuota.yaml

        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ResourceQuota.yaml

        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.json

              "values": [
                "valuesValue"
              ]
            }
          ]
        }
      },
      "status": {
        "hard": {
          "hardKey": "0"
        },
        "used": {
          "usedKey": "0"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ResourceQuota.json

              "values": [
                "valuesValue"
              ]
            }
          ]
        }
      },
      "status": {
        "hard": {
          "hardKey": "0"
        },
        "used": {
          "usedKey": "0"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top