Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,947 for verify16 (0.14 sec)

  1. test/copy.go

    	verify8(length, in, out, n)
    	n = copy(my8(outputS[out:clamp(out+length)]), myS(inputS[in:clamp(in+length)]))
    	verifyS(length, in, out, n)
    	n = copy(my16(output16[out:clamp(out+length)]), input16[in:clamp(in+length)])
    	verify16(length, in, out, n)
    	n = copy(my32(output32[out:clamp(out+length)]), my32b(input32[in:clamp(in+length)]))
    	verify32(length, in, out, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Verify.java

     * whenever there is a chance the check may fail "in real life". Example:
     *
     * <pre>{@code
     * Bill bill = remoteService.getLastUnpaidBill();
     *
     * // In case bug 12345 happens again we'd rather just die
     * Verify.verify(bill.status() == Status.UNPAID,
     *     "Unexpected bill status: %s", bill.status());
     * }</pre>
     *
     * <h3>Comparison to alternatives</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/verify.go

    and will verify if pods and services defined in it are present.
    
    Note: For verifying whether your cluster is ready for Istio installation, see
    istioctl experimental precheck.
    `,
    		Example: `  # Verify that Istio is installed correctly via Istio Operator
      istioctl verify-install
    
      # Verify the deployment matches a custom Istio deployment configuration
      istioctl verify-install -f $HOME/istio.yaml
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. hack/make-rules/verify.sh

    QUICK_PATTERNS+=(
      "verify-api-groups.sh"
      "verify-boilerplate.sh"
      "verify-external-dependencies-version.sh"
      "verify-fieldname-docs.sh"
      "verify-gofmt.sh"
      "verify-imports.sh"
      "verify-non-mutating-validation.sh"
      "verify-pkg-names.sh"
      "verify-readonly-packages.sh"
      "verify-spelling.sh"
      "verify-staging-client-go.sh"
      "verify-staging-meta-files.sh"
      "verify-test-featuregates.sh"
      "verify-test-images.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/verify.go

    )
    
    var cmdVerify = &base.Command{
    	UsageLine: "go mod verify",
    	Short:     "verify dependencies have expected content",
    	Long: `
    Verify checks that the dependencies of the current module,
    which are stored in a local downloaded source cache, have not been
    modified since being downloaded. If all the modules are unmodified,
    verify prints "all modules verified." Otherwise it reports which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Verify.java

     * whenever there is a chance the check may fail "in real life". Example:
     *
     * <pre>{@code
     * Bill bill = remoteService.getLastUnpaidBill();
     *
     * // In case bug 12345 happens again we'd rather just die
     * Verify.verify(bill.status() == Status.UNPAID,
     *     "Unexpected bill status: %s", bill.status());
     * }</pre>
     *
     * <h3>Comparison to alternatives</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  7. hack/lib/verify-generated.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Short-circuit if verify-generated.sh has already been sourced.
    [[ $(type -t kube::verify::generated::loaded) == function ]] && return 0
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This function verifies whether generated files are up-to-date. The first two
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                }
    
                tasks.register('verify2', VerifyTask) {
                    dependsOn tasks.named('update2')
                    archive = theArchive2
                    beginsWith = 'modification 2'
                }
            """
    
            when:
            run 'verify1', 'verify2'
    
            then:
            result.assertTasksExecutedAndNotSkipped(':update1', ':update2', ':verify1', ':verify2')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. hack/verify-all.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs all the verify scripts respectively, so we should run
    # `hack/verify-all.sh` before submit a PR. It is equivalent to `make verify`.
    # Usage: `hack/verify-all.sh` or `make verify`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. hack/verify-yamlfmt.sh

    # `yamlfmt`. Run `hack/update-yamlfmt.sh` to actually format sources.
    #
    # Usage: `hack/verify-yamlfmt.sh`.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top