Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 487 for checkSeq (0.26 sec)

  1. README.md

    [guava-snapshot-api-diffs]: https://guava.dev/releases/snapshot-jre/api/diffs/
    [Guava Explained]: https://github.com/google/guava/wiki/Home
    [Guava Beta Checker]: https://github.com/google/guava-beta-checker
    
    <!-- References -->
    
    [using Guava in your build]: https://github.com/google/guava/wiki/UseGuavaInYourBuild
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * <ul>
       *   <li>All visible static methods are checked such that passing null for any parameter that's
       *       not annotated nullable (according to the rules of {@link NullPointerTester}) should throw
       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/database/sql/convert.go

    		// NamedValueConverter is selected should the Column Converter
    		// be used in the retry.
    		checker := defaultCheckNamedValue
    		nextCC := false
    		switch {
    		case nvc != nil:
    			nextCC = cci != nil
    			checker = nvc.CheckNamedValue
    		case cci != nil:
    			checker = cc.CheckNamedValue
    		}
    
    	nextCheck:
    		err = checker(nv)
    		switch err {
    		case nil:
    			n++
    			continue
    		case driver.ErrRemoveArgument:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. integration-tests/gradle/build.gradle.kts

        "failureaccess-1.0.2.jar",
        "jsr305-3.0.2.jar",
        "checker-qual-3.43.0.jar",
        "error_prone_annotations-2.28.0.jar",
        "listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
      )
    val expectedReducedRuntimeClasspathJreVersion =
      setOf(
        "guava-$guavaVersionJre.jar",
        "failureaccess-1.0.2.jar",
        "jsr305-3.0.2.jar",
        "checker-qual-3.43.0.jar",
        "error_prone_annotations-2.28.0.jar",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * <ul>
       *   <li>All visible static methods are checked such that passing null for any parameter that's
       *       not annotated nullable (according to the rules of {@link NullPointerTester}) should throw
       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tests/integration/pilot/locality_test.go

    }
    
    func sendTrafficOrFail(t framework.TestContext, from echo.Instance, host string, expected map[string]int) {
    	t.Helper()
    	headers := http.Header{}
    	headers.Add("Host", host)
    	checker := func(result echo.CallResult, inErr error) error {
    		if inErr != nil {
    			return inErr
    		}
    		got := map[string]int{}
    		for _, r := range result.Responses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. operator/pkg/verifier/verifier.go

    }
    
    func (v *StatusVerifier) reportStatus(crdCount, istioDeploymentCount, daemonSetCount int, err error) error {
    	v.logger.LogAndPrintf("Checked %v custom resource definitions", crdCount)
    	v.logger.LogAndPrintf("Checked %v Istio Deployments", istioDeploymentCount)
    	if daemonSetCount > 0 {
    		v.logger.LogAndPrintf("Checked %v Istio Daemonsets", daemonSetCount)
    	}
    	if istioDeploymentCount == 0 {
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentUtils.java

         * If the returned value is {@code true} then the argument is definitely a java agent application.
         * However, only the name of the agent jar is checked, so it is possible to have false positives and false negatives.
         *
         * @param jvmArg the argument to check
         * @return {@code true} if the argument looks like a switch, {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/health.go

    	f func(clientset.Interface, *kubeadmapi.ClusterConfiguration) error
    }
    
    // Check is part of the preflight.Checker interface
    func (c *healthCheck) Check() (warnings, errors []error) {
    	if err := c.f(c.client, c.cfg); err != nil {
    		return nil, []error{err}
    	}
    	return nil, nil
    }
    
    // Name is part of the preflight.Checker interface
    func (c *healthCheck) Name() string {
    	return c.name
    }
    
    // CheckClusterHealth makes sure:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    				got := types.ObjectString(importedObj, types.RelativeTo(imported))
    				got = sanitizeObjectString(got)
    
    				checkedObj := checked.Scope().Lookup(name)
    				if checkedObj == nil {
    					t.Fatalf("imported object %q was not type-checked", name)
    				}
    				want := types.ObjectString(checkedObj, types.RelativeTo(checked))
    				want = sanitizeObjectString(want)
    
    				if got != want {
    					t.Errorf("imported %q as %q, want %q", name, got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top