Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for expectation (0.22 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    // 5. DestinaitonRule with tls ISTIO_MUTUAL mode, because Istio auto mTLS will let client send plaintext to naked servers by default.
    // 6. MeshConfig.TrustDomainAliases contains one of the trust domain "server-naked-foo".
    //
    // Expectation:
    // When the "server-naked-foo" is in the list of MeshConfig.TrustDomainAliases, client requests to
    // "server-naked-foo" succeeds, and requests to "server-naked-bar" fails.
    func TestTrustDomainAliasSecureNaming(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/internal/trace/reader_test.go

    				ev.Task()
    			case trace.EventSync:
    			case trace.EventStackSample:
    			case trace.EventBad:
    			}
    		}
    	})
    }
    
    func testReader(t *testing.T, tr io.Reader, exp *testtrace.Expectation) {
    	r, err := trace.NewReader(tr)
    	if err != nil {
    		if err := exp.Check(err); err != nil {
    			t.Error(err)
    		}
    		return
    	}
    	v := testtrace.NewValidator()
    	for {
    		ev, err := r.ReadEvent()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

            ERROR, //
            WARNING //
        }
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

         *
         * This method will emit a detailed deprecation method with suggestions if the usage is inconsistent.  It will then attempt to mutate
         * the usage to match the expectation.  If the usage cannot be mutated, it will throw an exception.
         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
         * @param conf the existing configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

            this.timeoutMs = timeout.toMillis();
            this.waitingFor = maxConcurrent;
            this.previous = previous;
            for (ResourceExpectation expectation : expectedRequests) {
                ResourceHandlerWrapper handler = new ResourceHandlerWrapper(lock, expectation, getWaitPrecondition(), isAutoRelease());
                notReceived.add(handler);
            }
        }
    
        protected boolean isAutoRelease() {
            return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

            V30,
            V31,
            V40
        }
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which a POM was read.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils.go

    		if exp.Fulfilled() {
    			logger.V(4).Info("Controller expectations fulfilled", "expectations", exp)
    			return true
    		} else if exp.isExpired() {
    			logger.V(4).Info("Controller expectations expired", "expectations", exp)
    			return true
    		} else {
    			logger.V(4).Info("Controller still waiting on expectations", "expectations", exp)
    			return false
    		}
    	} else if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/net/http/status.go

    	case StatusUnsupportedMediaType:
    		return "Unsupported Media Type"
    	case StatusRequestedRangeNotSatisfiable:
    		return "Requested Range Not Satisfiable"
    	case StatusExpectationFailed:
    		return "Expectation Failed"
    	case StatusTeapot:
    		return "I'm a teapot"
    	case StatusMisdirectedRequest:
    		return "Misdirected Request"
    	case StatusUnprocessableEntity:
    		return "Unprocessable Entity"
    	case StatusLocked:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    	// Trace data state.
    	ver             version.Version
    	names           map[string]event.Type
    	specs           []event.Spec
    	events          []raw.Event
    	gens            []*Generation
    	validTimestamps bool
    
    	// Expectation state.
    	bad      bool
    	badMatch *regexp.Regexp
    }
    
    // NewTrace creates a new trace.
    func NewTrace() *Trace {
    	ver := version.Go122
    	return &Trace{
    		names:           event.Names(ver.Specs()),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top