Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,088 for doclet (0.09 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            synchronized (docList) {
                docList.add(ingest(paramMap, dataMap));
                final long contentSize = indexingHelper.calculateDocumentSize(dataMap);
                docList.addContentSize(contentSize);
                final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime;
                docList.addProcessingTime(processingTime);
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_linux_test.go

    82 62 0:43 / /var/lib/foo rw,relatime shared:32 - tmpfs tmpfs rw
    83 63 0:44 / /var/lib/bar rw,relatime - tmpfs tmpfs rw
    227 62 253:0 /var/lib/docker/devicemapper /var/lib/docker/devicemapper rw,relatime - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    224 62 253:0 /var/lib/docker/devicemapper/test/shared /var/lib/docker/devicemapper/test/shared rw,relatime master:1 shared:44 - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. prow/config/calico.md

    Once downloaded, run the following sed command to replace the default docker.io images with istio-testing's copies of them:
    
    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
  4. src/crypto/internal/boring/build.sh

    platform=""
    buildargs=""
    case "$GOARCH" in
    amd64)
    	;;
    arm64)
    	if ! docker run --rm -t arm64v8/ubuntu:focal uname -m >/dev/null 2>&1; then
    		echo "# Docker cannot run arm64 binaries. Try:"
    		echo "	sudo apt-get install qemu binfmt-support qemu-user-static"
    		echo "	docker run --rm --privileged multiarch/qemu-user-static --reset -p yes"
    		echo "	docker run --rm -t arm64v8/ubuntu:focal uname -m"
    		exit 1
    	fi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. cluster/images/etcd/Makefile

    		cd $(TEMP_DIR) && echo "ENV ETCD_UNSUPPORTED_ARCH=$(ARCH)" >> $(DOCKERFILE)
            endif
    endif
    
    	docker run --rm --privileged multiarch/qemu-user-static:$(QEMUVERSION) --reset -p yes
    	docker buildx version
    	BUILDER=$(shell docker buildx create --use)
    
    	# And build the image
    	docker buildx build \
    		--pull \
    		--provenance=false \
    		--sbom=false \
    		--output=type=$(OUTPUT_TYPE) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. .github/workflows/multipart/migrate.sh

    cd .github/workflows/multipart/
    
    function cleanup() {
    	docker-compose -f docker-compose-site1.yaml rm -s -f || true
    	docker-compose -f docker-compose-site2.yaml rm -s -f || true
    	for volume in $(docker volume ls -q | grep minio); do
    		docker volume rm ${volume} || true
    	done
    
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    cleanup
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                }
                if (logger.isInfoEnabled()) {
                    if (docList.getContentSize() > 0) {
                        logger.info("Sent {} docs (Doc:{process {}ms, send {}ms, size {}}, {})", docList.size(), docList.getProcessingTime(),
                                (systemHelper.getCurrentTimeAsLong() - execTime), MemoryUtil.byteCountToDisplaySize(docList.getContentSize()),
                                MemoryUtil.getMemoryUsageLog());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-ns-override
      namespace: ns-override
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.1-distroless
        name: istio-proxy
    ---
    # Pod with ProxyConfig for workload-override namespace should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/DockerPluginSmokeTest.groovy

        @Issue('https://plugins.gradle.org/plugin/com.bmuschko.docker-java-application')
        def 'docker plugin'() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                    id 'application'
                    id "com.bmuschko.docker-java-application" version "${TestedVersions.docker}"
                }
    
                application.mainClass = 'org.gradle.JettyMain'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/go-fips.yml

            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
    
          - name: Set up Docker Buildx
            uses: docker/setup-buildx-action@v2
    
          - name: Setup dockerfile for build test
            run: |
              GO_VERSION=$(go version | cut -d ' ' -f 3 | sed 's/go//')
              echo Detected go version $GO_VERSION
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top