Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,406 for nack (0.09 sec)

  1. platforms/software/testing-base-infrastructure/src/integTest/resources/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest/loggingConfig/src/test/java/com/example/LumberJackTest.java

    import static org.junit.Assert.assertEquals;
    
    import org.junit.Test;
    
    public class LumberJackTest {
        @Test
        public void singsTheSong() {
            LumberJack jack = new LumberJack();
            jack.sing();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 898 bytes
    - Viewed (0)
  2. hack/verify-external-dependencies-version.sh

    # limitations under the License.
    
    # This script verifies that dependencies are up-to-date across different files
    # Usage: `hack/verify-external-dependencies-version.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # Ensure that we find the binaries we build before anything else.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 08:20:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. hack/verify-typecheck.sh

    # limitations under the License.
    
    # This script does a fast type check of kubernetes code for all platforms.
    # Usage: `hack/verify-typecheck.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    cd "${KUBE_ROOT}"
    
    kube::golang::setup_env
    
    ret=0
    TYPECHECK_SERIAL="${TYPECHECK_SERIAL:-false}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:00 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
     * When the system wall clock jumps back in time, this clock will effectively slow down until it is back in sync.
     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. hack/make-rules/update.sh

    for t in "${BASH_TARGETS[@]}"; do
    	echo -e "${color_yellow:?}Running ${t}${color_norm:?}"
    	if ${SILENT} ; then
    		if ! bash "${KUBE_ROOT}/hack/${t}.sh" 1> /dev/null; then
    			echo -e "${color_red:?}Running ${t} FAILED${color_norm}"
    			if ! ${ALL}; then
    				exit 1
    			fi
    		fi
    	else
    		if ! bash "${KUBE_ROOT}/hack/${t}.sh"; then
    			echo -e "${color_red}Running ${t} FAILED${color_norm}"
    			if ! ${ALL}; then
    				exit 1
    			fi
    		fi
    	fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. cmd/fieldnamedocscheck/field_name_docs_check.go

    	// The rule is:
    	// 1. Get all back-tick quoted names in the doc
    	// 2. Skip the name which is already found mismatched.
    	// 3. Skip the name whose lowercase is different from the lowercase of tag names,
    	//    because some docs use back-tick to quote field value or nil
    	// 4. Check if the name is different from its tag name
    
    	// TODO: a manual pass adding back-ticks to the doc strings, then update the linter to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. hack/jenkins/benchmark-dockerized.sh

    # As individual scripts make use of go modules, they can explicitly set GO111MODULE=on
    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install github.com/cespare/prettybench
    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
    
    # Disable the Go race detector.
    export KUBE_RACE=" "
    # Disable coverage report
    export KUBE_COVER="n"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. hack/verify-cli-conventions.sh

    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/clicheck
    
    if ! output=$(clicheck 2>&1)
    then
    	echo "$output"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. hack/make-rules/verify.sh

      "verify-vendor-licenses.sh"
    )
    
    while IFS='' read -r line; do EXCLUDED_CHECKS+=("$line"); done < <(ls "${EXCLUDED_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    while IFS='' read -r line; do QUICK_CHECKS+=("$line"); done < <(ls "${QUICK_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    TARGET_LIST=()
    IFS=" " read -r -a TARGET_LIST <<< "${WHAT:-}"
    
    function is-excluded {
      for e in "${EXCLUDED_CHECKS[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    			ResourceNames: []string{"80", "8080"},
    		})
    
    		node, _ := model.ParseServiceNodeWithMetadata(ads.ID, &model.NodeMetadata{})
    		verifySyncStatus(t, s.Discovery, node.ID, true, true)
    	})
    	t.Run("sync status not set when Nackd", func(t *testing.T) {
    		s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    		ads := s.ConnectADS()
    
    		ads.RequestResponseNack(t, &discovery.DiscoveryRequest{TypeUrl: v3.ClusterType})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top