Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,024 for verifyFn (0.2 sec)

  1. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    		if len(pods) != totalPods {
    			t.Fatalf("Expected create pods 2/3, got pods %v", pods)
    		}
    
    		return pods
    	}
    	testCases := []struct {
    		policyType apps.PodManagementPolicyType
    		verifyFn   func(
    			set *apps.StatefulSet,
    			spc *fakeObjectManager,
    			ssc StatefulSetControlInterface,
    			pods []*v1.Pod,
    			totalPods int,
    			selector labels.Selector,
    		) []*v1.Pod
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/verify.go

    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
    
      # Verify the deployment matches the Istio Operator deployment definition
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. hack/verify-licenses.sh

    jq -r '.licenses[] | select(.isDeprecatedLicenseId==false) .licenseId' "${ARTIFACTS}"/licenses.json | sort | uniq > "${ARTIFACTS}"/licenses.txt
    
    # Scanning go-packages under the project & verifying against the CNCF approved list of licenses
    echo '[INFO] Starting license scan on go-packages...'
    go-licenses report ./... >> "${ARTIFACTS}"/licenses.csv 2>"${ARTIFACTS}"/logs/go-licenses.log
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    		// but it's also the "no chains found" error
    		// and is close enough.
    		return CertificateInvalidError{c, IncompatibleUsage, ""}
    	}
    
    	return nil
    }
    
    // Verify attempts to verify c by building one or more chains from c to a
    // certificate in opts.Roots, using certificates in opts.Intermediates if
    // needed. If successful, it returns one or more chains where the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. 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)
Back to top