Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Did (0.1 sec)

  1. src/cmd/go/go_test.go

    	t.Log("\n\nREPEAT\n\n")
    
    	tg.run("test", "-x", "-v", "-short", "t/...")
    	tg.grepStdout(`ok  \tt/t1\t\(cached\)`, "did not cache t1")
    	tg.grepStdout(`ok  \tt/t2\t\(cached\)`, "did not cache t2")
    	tg.grepStdout(`ok  \tt/t3\t\(cached\)`, "did not cache t3")
    	tg.grepStdout(`ok  \tt/t4\t\(cached\)`, "did not cache t4")
    	tg.grepStderrNot(`[\\/](compile|gccgo) `, "incorrectly ran compiler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Code:           "InvalidArgument",
    		Description:    "The calculated MD5 hash of the key did not match the hash that was provided.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidSSECustomerParameters: {
    		Code:           "InvalidArgument",
    		Description:    "The provided encryption parameters did not match the ones used originally.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrKMSNotConfigured: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    // TestQuantityParseNonNumericPanic ensures that when a non-numeric string is parsed
    // it panics
    func TestQuantityParseNonNumericPanic(t *testing.T) {
    	defer func() {
    		if r := recover(); r == nil {
    			t.Errorf("MustParse did not panic")
    		}
    	}()
    	_ = MustParse("Non-Numeric")
    }
    
    // TestQuantityAddZeroPreservesSuffix verifies that a suffix is preserved
    // independent of the order of operations when adding a zero and non-zero val
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    	}
    	if nulls.PTime != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PTime")
    	}
    	if nulls.PBigInt != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PBigInt")
    	}
    	if nulls.PText != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PText")
    	}
    	if nulls.PBuffer != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PBuffer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    			}
    			if clientCalled != wantCalled {
    				t.Errorf("%s: expected client VerifyConnection called %d times, did %d times", name, wantCalled, clientCalled)
    			}
    			if serverCalled != wantCalled {
    				t.Errorf("%s: expected server VerifyConnection called %d times, did %d times", name, wantCalled, serverCalled)
    			}
    		}
    		testHandshakeState(fmt.Sprintf("%s-FullHandshake", test.name), false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		t.Fatalf("Unexpected object from result: %#v", obj)
    	}
    	defer t.delete(t.TestContext(), obj)
    	createdMeta := t.getObjectMetaOrFail(obj)
    	if !metav1.HasObjectMetaSystemFieldValues(createdMeta) {
    		t.Errorf("storage did not populate object meta field values")
    	}
    }
    
    func (t *Tester) testCreateIgnoresContextNamespace(valid runtime.Object, opts metav1.CreateOptions) {
    	// Ignore non-empty namespace in context
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    				t.Errorf("VerifyPeerCertificates not called on the client")
    			}
    			if !serverVerifyConnection {
    				t.Error("VerifyConnection did not get called on the server")
    			}
    			if !clientVerifyConnection {
    				t.Error("VerifyConnection did not get called on the client")
    			}
    
    			serverVerifyPeerCertificates, clientVerifyPeerCertificates = false, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    "Non-unique repository ids did not cause validation error");
        }
    
        /* MNG-4193 */
        @Test
        void testValidationErrorUponNonUniquePluginRepositoryId() throws Exception {
            assertThrows(
                    ProjectBuildingException.class,
                    () -> buildPom("unique-repo-id/plugin-repo"),
                    "Non-unique repository ids did not cause validation error");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    	state, _, err := testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if !state.DidResume {
    		t.Fatalf("handshake did not resume at the same version")
    	}
    
    	// Test that the server will decline to resume at a lower version.
    	clientConfig.MaxVersion = VersionTLS12
    	state, _, err = testHandshake(t, clientConfig, serverConfig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server_test.go

    	if err != nil {
    		t.Fatalf("Got error GETing: %v", err)
    	}
    	defer resp.Body.Close()
    
    	body, err := httputil.DumpResponse(resp, true)
    	if err != nil {
    		// copying the response body did not work
    		t.Errorf("Cannot copy resp: %#v", err)
    	}
    	result := string(body)
    	if !strings.Contains(result, "kubelet.log") || !strings.Contains(result, "google.log") {
    		t.Errorf("Received wrong data: %s", result)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top