Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shouldMount (0.13 sec)

  1. pkg/kubelet/kubelet_pods.go

    // - Windows pod contains a hostProcess container
    func shouldMountHostsFile(pod *v1.Pod, podIPs []string) bool {
    	shouldMount := len(podIPs) > 0
    	if runtime.GOOS == "windows" {
    		return shouldMount && !kubecontainer.HasWindowsHostProcessContainer(pod)
    	}
    	return shouldMount
    }
    
    // makeMounts determines the mount points for the given container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    abstract Property<CountingService> getCounter()
                    @$Internal.name
                    final Property<Boolean> shouldCount = project.objects.property(Boolean).convention(true)
    
                    @TaskAction
                    def go() {
                        if (shouldCount.get()) {
                            counter.get().increment()
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js.map

    popperWidth % 2;\n  const bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1;\n\n  const horizontalToInteger = !shouldRound\n    ? noRound\n    : isVertical || isVariation || sameWidthParity\n    ? round\n    : floor;\n  const verticalToInteger = !shouldRound ? noRound : round;\n\n  return {\n    left: horizontalToInteger(\n      bothOddWidth && !isVariation && shouldRound\n        ? popper.left - 1\n        : popper.left\n    ),\n    top: verticalToInteger(popper.top),\n    bottom: vertic...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top