Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 217 for nack (0.05 sec)

  1. pkg/xds/server_test.go

    			response: true,
    		},
    		{
    			name: "ack",
    			proxy: &TestProxy{
    				WatchedResources: map[string]*WatchedResource{
    					model.ClusterType: {
    						NonceSent: "nonce",
    					},
    				},
    			},
    			request: &discovery.DiscoveryRequest{
    				TypeUrl:       model.ClusterType,
    				VersionInfo:   "v1",
    				ResponseNonce: "nonce",
    			},
    			response: false,
    		},
    		{
    			name: "ack forced",
    			proxy: &TestProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/pack/pack.go

    	log.SetPrefix("pack: ")
    	telemetry.Start()
    	// need "pack op archive" at least.
    	if len(os.Args) < 3 {
    		log.Print("not enough arguments")
    		fmt.Fprintln(os.Stderr)
    		usage()
    	}
    	setOp(os.Args[1])
    	telemetry.Inc("pack/invocations")
    	telemetry.Inc("pack/op:" + string(op))
    	var ar *Archive
    	switch op {
    	case 'p':
    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.printContents)
    	case 'r':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    	var addresses sets.String
    	if isReq {
    		// this is from request, we only send response for the subscribed address
    		// At t0, a client request A, we only send A and additional resources back to the client.
    		// At t1, a client request B, we only send B and additional resources back to the client, no A here.
    		addresses = req.Delta.Subscribed
    	} else {
    		if w.Wildcard {
    			addresses = updatedAddresses
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

    linters-settings: # please keep this alphabetized
      custom:
        logcheck:
          # Installed there by hack/verify-golangci-lint.sh.
          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

    linters-settings: # please keep this alphabetized
      custom:
        logcheck:
          # Installed there by hack/verify-golangci-lint.sh.
          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. hack/update-kustomize.sh

      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/api "$LATEST_API"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kustomize/v5 "$LATEST_KUSTOMIZE"
    
    ./hack/update-vendor.sh
    ./hack/update-internal-modules.sh
    ./hack/update-go-workspace.sh
    ./hack/lint-dependencies.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. hack/verify-api-groups.sh

    # better than nothing
    for external_group_version in "${external_group_versions[@]}"; do
    	if ! grep -q "${external_group_version}" "${KUBE_ROOT}/hack/lib/init.sh" ; then
    		echo "missing ${external_group_version} from hack/lib/init.sh:/KUBE_AVAILABLE_GROUP_VERSIONS or hack/init.sh:/KUBE_NONSERVER_GROUP_VERSIONS"
    		exit 1
    	fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. hack/verify-e2e-suites.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    kube::util::ensure-temp-dir
    
    res=0
    for suite in $(git grep -l framework.AfterReadingAllFlags | grep -v -e ^test/e2e/framework -e ^hack | xargs -n 1 dirname | sort -u); do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/test.sh"
    source "${KUBE_ROOT}/test/cmd/legacy-script.sh"
    
    # setup envs for TokenRequest required flags
    SERVICE_ACCOUNT_LOOKUP=${SERVICE_ACCOUNT_LOOKUP:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top