Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 128 for corerest (0.29 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    			continue
    		}
    		tv := info.Types[expr]
    
    		// check that type is correct
    		if got := tv.Type.String(); got != test.typ {
    			t.Errorf("package %s: got type %s; want %s", name, got, test.typ)
    			continue
    		}
    
    		// if we have a constant, check that value is correct
    		if tv.Value != nil {
    			if got := tv.Value.ExactString(); got != test.val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    		"baz": "quuux",
    	}
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    
    	// These constants are related, but I avoid calculating the correct values in
    	// code.  If you update a parameter here, recalculate the correct values for
    	// all of them.  Further down in the test, we use these to control loops, and
    	// that level of logic is enough complexity for me.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    		fw.fakeAuth,
    		kubeCfg,
    	)
    	fw.serverUnderTest = &server
    	fw.testHTTPServer = httptest.NewServer(fw.serverUnderTest)
    	return fw
    }
    
    // A helper function to return the correct pod name.
    func getPodName(name, namespace string) string {
    	if namespace == "" {
    		namespace = metav1.NamespaceDefault
    	}
    	return name + "_" + namespace
    }
    
    func TestServeLogs(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    			continue
    		}
    		tv := info.Types[expr]
    
    		// check that type is correct
    		if got := tv.Type.String(); got != test.typ {
    			t.Errorf("package %s: got type %s; want %s", name, got, test.typ)
    			continue
    		}
    
    		// if we have a constant, check that value is correct
    		if tv.Value != nil {
    			if got := tv.Value.ExactString(); got != test.val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    // Be explicit about where origin info lives, it's not visible without scrolling right
    In this example, not only could we check that the checksum was correct, but we could also find it on the official website, which is why we changed the value of the of `origin` attribute on the `sha512` element from `Generated by Gradle` to `PDFBox Official site`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
    		}
    		// Correct IE 7 (shifts anchor nodes onhover)
    		if(/msie/.test(u) && parseInt(v, 10) == 7) {
    			is_ie7 = true;
    			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
    		}
    		// correct ff2 lack of display:inline-block
    		if(!/compatible/.test(u) && /mozilla/.test(u) && parseFloat(v, 10) < 1.9) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			s.assertEvent(t, s.svcXdsName("svc1"), s.podXdsName("pod1"))
    
    			// Label the pod and check that the correct event is produced.
    			s.labelPod(t, "pod1", testNS,
    				map[string]string{"app": "a", constants.AmbientUseWaypointLabel: "test-wp"})
    			c.podAssertion(s)
    
    			// Label the service and check that the correct event is produced.
    			s.labelService(t, "svc1", testNS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    
    	// when we send a bookmark event, the client expects the event to contain an
    	// object of the correct type, but with no fields set other than the resourceVersion
    	testCheckResultFunc(t, w, func(actualEvent watch.Event) {
    		expectNoDiff(t, "incorrect event type", watch.Bookmark, actualEvent.Type)
    		// first, check that we have the correct resource version
    		obj, ok := actualEvent.Object.(metav1.Object)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    		if y.mode == constant_ {
    			// if either x or y has an unknown value, the result is unknown
    			if x.val.Kind() == constant.Unknown || y.val.Kind() == constant.Unknown {
    				x.val = constant.MakeUnknown()
    				// ensure the correct type - see comment below
    				if !isInteger(x.typ) {
    					x.typ = Typ[UntypedInt]
    				}
    				return
    			}
    			// rhs must be within reasonable bounds in constant shifts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top