Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for heal (0.04 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. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

            if (!gradle.daemonIdleTimeoutConfigurable && OperatingSystem.current().isWindows()) {
                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

    /**
     * Unit test for {@link FinalizableReferenceQueue}.
     *
     * @author Bob Lee
     */
    // - depends on details of GC and classloading
    // - .class files aren't available
    // - possibly no real concept of separate ClassLoaders?
    @AndroidIncompatible
    @GwtIncompatible
    public class FinalizableReferenceQueueTest extends TestCase {
    
      private @Nullable FinalizableReferenceQueue frq;
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/os/exec_windows.go

    			}
    		case '"':
    			b = appendBSBytes(b, nslash/2)
    			if nslash%2 == 0 {
    				// use "Prior to 2008" rule from
    				// http://daviddeley.com/autohotkey/parameters/parameters.htm
    				// section 5.2 to deal with double double quotes
    				if inquote && len(cmd) > 1 && cmd[1] == '"' {
    					b = append(b, c)
    					cmd = cmd[1:]
    				}
    				inquote = !inquote
    			} else {
    				b = append(b, c)
    			}
    			nslash = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top