Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for heal (0.24 sec)

  1. buildscripts/minio-upgrade.sh

    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    verify_checksum_after_heal() {
    	local sum1
    	sum1=$(curl -s "$2" | sha256sum)
    	mc admin heal --json -r "$1" >/dev/null # test after healing
    	local sum1_heal
    	sum1_heal=$(curl -s "$2" | sha256sum)
    
    	if [ "${sum1_heal}" != "${sum1}" ]; then
    		echo "mismatch expected ${sum1_heal}, got ${sum1}"
    		exit 1
    	fi
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

            private final T head;
            private final PersistentList<T> tail;
    
            public Cons(T head, PersistentList<T> tail) {
                this.head = head;
                this.tail = tail;
            }
    
            @Override
            public void forEach(Consumer<? super T> consumer) {
                consumer.accept(head);
                tail.forEach(consumer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/queries.libsonnet

                )
              |||
            ),
            self.query(
              'Heap (In Use) ({{pod}})',
              |||
                sum by (pod) (
                  go_memstats_heap_inuse_bytes{%(appLabels)s}
                )
              |||
            ),
            self.query(
              'Heap (Allocated) ({{pod}})',
              |||
                sum by (pod) (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. docs/site-replication/run-replication-with-checksum-header.sh

    fi
    
    # Stat the objects from source site
    echo "Stat minio1/test-bucket/obj"
    SRC_OUT_1=$(aws s3api --endpoint-url https://localhost:9001 head-object --bucket test-bucket --key obj --checksum-mode ENABLED --no-verify-ssl --profile enterprise)
    SRC_OUT_2=$(aws s3api --endpoint-url https://localhost:9001 head-object --bucket test-bucket --key mpartobj --checksum-mode ENABLED --no-verify-ssl --profile enterprise)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    > Task :compileJava FAILED
    1 actionable task: 1 executed
    /home/user/gradle/samples/src/main/java/module-info.java:2: error: module not found: com.google.gson
        requires com.google.gson;          // real module
                           ^
    /home/user/gradle/samples/src/main/java/module-info.java:3: error: module not found: org.apache.commons.lang3
        requires org.apache.commons.lang3; // automatic module
                                   ^
    2 errors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  6. pkg/kubemark/hollow_kubelet.go

    		NodeStartupLatencyTracker: kubeletutil.NewNodeStartupLatencyTracker(),
    		TracerProvider:            noopoteltrace.NewTracerProvider(),
    		Recorder:                  &record.FakeRecorder{}, // With real recorder we attempt to read /dev/kmsg.
    	}
    
    	return &HollowKubelet{
    		KubeletFlags:         flags,
    		KubeletConfiguration: config,
    		KubeletDeps:          d,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pod/testing/fake_mirror_client.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    type FakeMirrorClient struct {
    	mirrorPodLock sync.RWMutex
    	// Note that a real mirror manager does not store the mirror pods in
    	// itself. This fake manager does this to track calls.
    	mirrorPods   sets.Set[string]
    	createCounts map[string]int
    	deleteCounts map[string]int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. .github/workflows/mint.yml

          - name: setup-go-step
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.x
    
          - name: github sha short
            id: vars
            run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
    
          - name: build-minio
            run: |
              TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
    
          - name: multipart uploads test
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. prow/release-commit.sh

    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    
    # Reference to the next minor version of Istio
    # This will create a version like 1.4-alpha.sha
    NEXT_VERSION=$(cat "${ROOT}/VERSION")
    TAG=$(git rev-parse HEAD)
    VERSION="${NEXT_VERSION}-alpha.${TAG}"
    
    # In CI we want to store the outputs to artifacts, which will preserve the build
    # If not specified, we can just create a temporary directory
    WORK_DIR="$(mktemp -d)/build"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/sync/pool.go

    func (p *Pool) Get() any {
    	if race.Enabled {
    		race.Disable()
    	}
    	l, pid := p.pin()
    	x := l.private
    	l.private = nil
    	if x == nil {
    		// Try to pop the head of the local shard. We prefer
    		// the head over the tail for temporal locality of
    		// reuse.
    		x, _ = l.shared.popHead()
    		if x == nil {
    			x = p.getSlow(pid)
    		}
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top