Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for expectation (0.15 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

                }
                assert actualMessage == expected
            }
    
            private void printForCopyInTest() {
                println("Incorrect test expectation. You might want to verify this message an copy this expectation in the test if you changed the rendering:")
                println()
                println('outputEquals """')
                println(actualMessage)
                println('"""')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. cmd/object-lambda-handlers.go

    	"Request URI Too Long":            http.StatusRequestURITooLong,
    	"Unsupported Media Type":          http.StatusUnsupportedMediaType,
    	"Requested Range Not Satisfiable": http.StatusRequestedRangeNotSatisfiable,
    	"Expectation Failed":              http.StatusExpectationFailed,
    	"I'm a teapot":                    http.StatusTeapot,
    	"Misdirected Request":             http.StatusMisdirectedRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/internal/coverage/encodecounter/encode.go

    	r.stab.Lookup("")
    	return r
    }
    
    // CounterVisitor describes a helper object used during counter file
    // writing; when writing counter data files, clients pass a
    // CounterVisitor to the write/emit routines, then the expectation is
    // that the VisitFuncs method will then invoke the callback "f" with
    // data for each function to emit to the file.
    type CounterVisitor interface {
    	VisitFuncs(f CounterVisitorFn) error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/helpers_linux.go

    	for _, mount := range allCgroups {
    		// BEFORE kubelet used a random mount point per cgroups subsystem;
    		// NOW    more deterministic: kubelet use mount point with shortest path;
    		// FUTURE is bright with clear expectation determined in doc.
    		// ref. issue: https://github.com/kubernetes/kubernetes/issues/95488
    
    		for _, subsystem := range mount.Subsystems {
    			previous := mountPoints[subsystem]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server_test.go

    					t.Errorf("Istiod failed to generate new DNS cert")
    				}
    			} else {
    				if len(c.expCert) != 0 {
    					if !checkCert(t, s, c.expCert, c.expKey) {
    						t.Errorf("Istiod certificate does not match the expectation")
    					}
    				} else {
    					if _, err := s.getIstiodCertificate(nil); err == nil {
    						t.Errorf("Istiod should not generate new DNS cert")
    					}
    				}
    			}
    
    			if c.expSecureDiscoveryService {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

            RoundingMode mode = entry.getKey();
            Double expectation = entry.getValue();
            assertWithMessage("roundToDouble(" + input + ", " + mode + ")")
                .that(BigIntegerMath.roundToDouble(input, mode))
                .isEqualTo(expectation);
          }
    
          if (!expectedValues.containsKey(UNNECESSARY)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    If multiple selection reasons exist, the insight report lists all of them.
    
    == Troubleshooting
    
    [[sec:resolving-version-conflict]]
    === Version Conflicts
    
    If the selected version does not match your expectation, Gradle offers a series of tools to help you <<dependency_constraints.adoc#dependency-constraints,control transitive dependencies>>.
    
    [[sec:resolving-variant-aware-errors]]
    === Variant Selection Errors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/HashFunction.java

     * including those in many JDK classes.
     *
     * <p>{@code Object.hashCode} implementations tend to be very fast, but have weak collision
     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/HashFunction.java

     * including those in many JDK classes.
     *
     * <p>{@code Object.hashCode} implementations tend to be very fast, but have weak collision
     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  10. src/net/http/sniff_test.go

    		// DetectContentType is defined to return
    		// text/plain; charset=utf-8 for an empty body,
    		// but as of Go 1.10 the HTTP server has been changed
    		// to return no content-type at all for an empty body.
    		// Adjust the expectation here.
    		wantContentType := tt.contentType
    		if len(tt.data) == 0 {
    			wantContentType = ""
    		}
    		if ct := resp.Header.Get("Content-Type"); ct != wantContentType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top