Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,230 for unreadable (0.2 sec)

  1. pkg/test/datasets/validation/dataset/networking-v1-ServiceEntry.yaml

    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
      - address: t.istio-system.svc.cluster.local # TODO: this is brittle
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  2. pkg/test/datasets/validation/dataset/networking-v1beta1-ServiceEntry.yaml

    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
      - address: t.istio-system.svc.cluster.local # TODO: this is brittle
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 511 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"action":                   "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.",
    	"reason":                   "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. pkg/kubelet/util/format/pod.go

    )
    
    // Pod returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    func Pod(pod *v1.Pod) string {
    	if pod == nil {
    		return "<nil>"
    	}
    	return PodDesc(pod.Name, pod.Namespace, pod.UID)
    }
    
    // PodDesc returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRole.java

    public interface ConfigurationRole {
        /**
         * Returns a human-readable name for this role.
         */
        String getName();
    
        boolean isConsumable();
        boolean isResolvable();
        boolean isDeclarable();
        boolean isConsumptionDeprecated();
        boolean isResolutionDeprecated();
        boolean isDeclarationAgainstDeprecated();
    
        /**
         * Obtains a human-readable summary of the usage allowed by the given role.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:39:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java

          rethrow(e);
        }
        throw new AssertionError("Unreachable");
      }
    
      @Override
      public V get(long timeout, TimeUnit unit)
          throws InterruptedException, ExecutionException, TimeoutException {
        try {
          super.get(timeout, unit);
        } catch (ExecutionException e) {
          rethrow(e);
        }
        throw new AssertionError("Unreachable");
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 20:02:10 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  7. src/crypto/aes/cipher_asm.go

    	if supportsAES && supportsGFMUL {
    		return &c, nil
    	}
    	return &c.aesCipherAsm, nil
    }
    
    func (c *aesCipherAsm) BlockSize() int { return BlockSize }
    
    func (c *aesCipherAsm) Encrypt(dst, src []byte) {
    	boring.Unreachable()
    	if len(src) < BlockSize {
    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/aes: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/deadcode/deadcode.go

    // license that can be found in the LICENSE file.
    
    // This file contains tests for the dead code checker.
    
    package deadcode
    
    func _() int {
    	print(1)
    	return 2
    	println() // ERROR "unreachable code"
    	return 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 320 bytes
    - Viewed (0)
  9. test/fixedbugs/issue4066.go

    	}
    }
    
    type terr struct{}
    
    func foo() (val int) {
    	val = 0
    	defer func() {
    		if x := recover(); x != nil {
    			_ = x.(terr)
    		}
    	}()
    	for {
    		val = 2
    		foo1()
    	}
    	panic("unreachable")
    }
    
    func foo1() {
    	panic(terr{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 04 16:07:21 UTC 2013
    - 543 bytes
    - Viewed (0)
  10. releasenotes/notes/46678.yaml

    issue:
      - 46555
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Fixed** attempting to reach multi-network endpoints that are unreachable due to `DestinationRule` TLS mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 24 21:40:59 UTC 2023
    - 407 bytes
    - Viewed (0)
Back to top