Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 207 for nfail (0.1 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          client.newBuilder()
            .readTimeout(Duration.ofSeconds(10)) // Confirm we fail before the read timeout.
            .pingInterval(Duration.ofMillis(500))
            .build()
    
        // Set up the server to ignore the socket. It won't respond to pings!
        server.enqueue(MockResponse(socketPolicy = StallSocketAtStart))
    
        // Make a call. It'll fail as soon as our pings detect a problem.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

    webhooks:
    - admissionReviewVersions:
      - v1
      clientConfig:
        service:
          name: webhook-service
          namespace: metallb-system
          path: /validate-metallb-io-v1beta2-bgppeer
      failurePolicy: Fail
      name: bgppeersvalidationwebhook.metallb.io
      rules:
      - apiGroups:
        - metallb.io
        apiVersions:
        - v1beta2
        operations:
        - CREATE
        - UPDATE
        resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

          return;
        }
        fail();
      }
    
      public void testAssertSubtypeTokenBeforeSupertypeToken_duplicate() {
        try {
          assertSubtypeTokenBeforeSupertypeToken(
              ImmutableList.of(TypeToken.of(String.class), TypeToken.of(String.class)));
        } catch (AssertionError expected) {
          return;
        }
        fail();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    			},
    		},
    		"CSR with no usages should fail": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					SignerName: validSignerName,
    					Request:    newCSRPEM(t),
    				},
    			},
    			errs: field.ErrorList{
    				field.Required(specPath.Child("usages"), ""),
    			},
    		},
    		"CSR with no signerName set should fail": {
    			csr: capi.CertificateSigningRequest{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    // not exist.
    //
    // Issue 12778: verify that NXDOMAIN without RA bit errors as "no such host"
    // and not "server misbehaving"
    //
    // Issue 25336: verify that NXDOMAIN errors fail fast.
    //
    // Issue 27525: verify that empty answers fail fast.
    func TestNoSuchHost(t *testing.T) {
    	tests := []struct {
    		name string
    		f    func(string, string, dnsmessage.Message, time.Time) (dnsmessage.Message, error)
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// Add the missing params
    	require.NoError(t, testContext.UpdateAndWait(fakeParams2))
    
    	// Expect validation to now fail again.
    	err = testContext.Plugin.Dispatch(
    		testContext,
    		attributeRecord(nil, fakeParams, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	// Expect validation to fail the third time due to validation failure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    		// Compile and errorCheck all files in the directory as packages in lexicographic order.
    		// If errorcheckdir and wantError, compilation of the last package must fail.
    		// If errorcheckandrundir and wantError, compilation of the package prior the last must fail.
    		longdir := filepath.Join(t.gorootTestDir, t.goDirName())
    		pkgs := goDirPackages(t.T, longdir, singlefilepkgs)
    		errPkg := len(pkgs) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

          return;
        }
        fail();
      }
    
      public void testAssertSubtypeTokenBeforeSupertypeToken_duplicate() {
        try {
          assertSubtypeTokenBeforeSupertypeToken(
              ImmutableList.of(TypeToken.of(String.class), TypeToken.of(String.class)));
        } catch (AssertionError expected) {
          return;
        }
        fail();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    <2> Second run reuses the configuration cache.
    <3> Assert that the configuration cache gets reused.
    
    If problems with the configuration cache are found then Gradle will fail the build reporting the problems, and the test will fail.
    
    [TIP]
    ====
    A good testing strategy for a Gradle plugin is to run its whole test suite with the configuration cache enabled.
    This requires testing the plugin with a supported Gradle version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	// Force detach metric due to timeout
    	testForceDetachMetric(t, 1, metrics.ForceDetachReasonTimeout)
    }
    
    // Populates desiredStateOfWorld cache with one node/volume/pod tuple.
    // Has node update fail
    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Marks the node/volume as unmounted.
    // Deletes the node/volume/pod tuple from desiredStateOfWorld cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top