Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 534 for withT (0.05 sec)

  1. src/cmd/go/go_test.go

    	tg.grepStdout("a.syso", "missing syso file with CGO_ENABLED=1")
    
    	tg.setenv("CGO_ENABLED", "0")
    	tg.run("list", "-f", "{{.SysoFiles}}", "syso")
    	tg.grepStdout("a.syso", "missing syso file with CGO_ENABLED=0")
    
    	tg.setenv("CGO_ENABLED", "1")
    	tg.run("list", "-msan", "-f", "{{.SysoFiles}}", "syso")
    	tg.grepStdoutNot("a.syso", "unexpected syso file with -msan")
    }
    
    // Issue 16120.
    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. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        def "throws NullPointerException when adding an entry with a null key to the property"() {
            when:
            property.put(null, (String) 'v')
            then:
            def ex = thrown NullPointerException
            ex.message == "Cannot add an entry with a null key to a property of type ${type().simpleName}."
        }
    
        def "throws NullPointerException when adding an entry with a null value to the property"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    	// low quota that attempts to create a large number of pods will be
    	// prevented from spamming the API service with the pod create requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // scheduled to nodes with matching taints. Each component can overwrite
      // these default values by adding its tolerations block in the relevant section below
      // and setting the desired values.
      // Configure this field in case that all pods of Istio control plane are expected to
      // be scheduled to particular nodes with specified taints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	rs.Spec.Replicas = pointer.Int32(3)
    	update(t, dc.rsStore, rs)
    
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 2, 3, map[string]metav1.Time{})
    }
    
    // Create a pod  with no controller, and verify that a PDB with a percentage
    // specified won't allow a disruption.
    func TestNakedPod(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	if rec.Code != serverNotInitializedErr {
    		t.Errorf("Object API Nil Test expected to fail with %d, but failed with %d", serverNotInitializedErr, rec.Code)
    	}
    
    	// HEAD HTTP Request doesn't contain body in its response,
    	// for other type of HTTP requests compare the response body content with the expected one.
    	if req.Method != http.MethodHead {
    		// read the response body.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

     * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
     * calling it should not be necessary with a high throughput cache. Only caches built with {@link
     * #removalListener removalListener}, {@link #expireAfterWrite expireAfterWrite}, {@link
     * #expireAfterAccess expireAfterAccess}, {@link #weakKeys weakKeys}, {@link #weakValues
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            with(executePlannedStepOps[0].details) {
                verifyTransformationIdentity(plannedTransformStepIdentity, expectedTransformId1)
                transformActionClass == "MakeColor"
    
                transformerName == "MakeColor"
                subjectName == "producer.jar (project :producer)"
            }
    
            with(executePlannedStepOps[1].details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	want string
    	err  string
    }{{
    	desc: "start element with name space",
    	toks: []Token{
    		StartElement{Name{"space", "local"}, nil},
    	},
    	want: `<local xmlns="space">`,
    }, {
    	desc: "start element with no name",
    	toks: []Token{
    		StartElement{Name{"space", ""}, nil},
    	},
    	err: "xml: start tag with no name",
    }, {
    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		// the time that calculating schedule.Next(earliestTime) is based on. While this works perfectly
    		// well for classic cron scheduled, with @every X, schedule.Next(earliestTime) just returns the time
    		// offset by X relative to the earliestTime.
    		// "with @every schedule, prev ran but done, is time, not past deadline": {
    		// 	concurrencyPolicy:          "Allow",
    		// 	schedule:                   everyHour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top