Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notOk (0.07 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

        def "report with problem loads successfully"() {
            given:
            buildFile '''
                tasks.register('notOk') {
                    doLast { println project.name }
                }
            '''
    
            when:
            configurationCacheFails 'notOk'
    
            then:
            def configurationCacheReport = resolveConfigurationCacheReport(testDirectory, failure.error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/integration/security/remote_jwks/remote_jwks_test.go

    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    						opts.Check = check.And(
    							check.NotOK(),
    							check.Status(http.StatusUnauthorized))
    					},
    				},
    				{
    					name:       "remote-jwks-with-service-entry",
    					policyFile: "./testdata/requestauthn-with-se.yaml.tmpl",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    								},
    								Address: to.Config().Service,
    								Scheme:  s,
    							}
    							if success {
    								opts.Check = check.And(check.OK(), check.ReachedTargetClusters(t))
    							} else {
    								opts.Check = check.NotOK()
    							}
    
    							from.CallOrFail(t, opts)
    						})
    					}
    
    					client := match.Cluster(cluster).FirstOrFail(t, client)
    					cases := []struct {
    						src    echo.Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/secure_naming_test.go

    										Name: "http",
    									},
    								}
    								if tc.expectSuccess {
    									opts.Check = check.And(check.OK(), check.ReachedTargetClusters(t))
    								} else {
    									opts.Check = check.NotOK()
    								}
    
    								a.CallOrFail(t, opts)
    							})
    					}
    				})
    			}
    		})
    }
    
    func verifyCertificatesWithPluginCA(t framework.TestContext, certs []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top