Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for notok (0.06 sec)

  1. src/cmd/go/testdata/script/cover_var_init_order.txt

    import (
    	"flag"
    )
    
    var (
    	fooFlag = flag.String("foo", "", "this should be ok")
    	foo     = flag.Lookup("foo")
    
    	barFlag = flag.String("bar", "", "this should be also ok, but is "+notOK()+".")
    	bar     = flag.Lookup("bar")
    )
    
    func notOK() string {
    	return "not OK"
    }
    
    -- m_test.go --
    
    package main
    
    import (
    	"testing"
    )
    
    func TestFoo(t *testing.T) {
    	if foo == nil {
    		t.Fatal()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 18:14:15 UTC 2022
    - 784 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/security/util/reachability/context.go

    									if expectMTLS {
    										opts.Check = check.And(opts.Check,
    											check.MTLSForHTTP())
    									}
    								} else {
    									tpe = "negative"
    									opts.Check = check.NotOK()
    								}
    								include := c.Include
    								if include == nil {
    									include = func(_ echo.Instance, _ echo.CallOptions) bool { return true }
    								}
    								if include(from, opts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // NOTOC -> dynamic [P8/default]: A P8 compatible, non-PIC stub is generated
    // NOTOC -> dynamic [P8/pie]:     A P8 compatible, PIC stub is generated
    //
    //
    // Some notes about other cases:
    //   TOC -> TOC, NOTOC -> NOTOC, NOTOC -> TOC  local calls do not require require call stubs.
    //   TOC -> NOTOC (R2 is preserved, st_other==0): A special case where a call stub is not needed.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    			}
    			if gotMinorVersion != tt.wantMinorVersion {
    				t.Errorf("parseKubeVersion() gotMinorVersion = %v, want %v", gotMinorVersion, tt.wantMinorVersion)
    			}
    			if gotOk != tt.wantOk {
    				t.Errorf("parseKubeVersion() gotOk = %v, want %v", gotOk, tt.wantOk)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      border: 1px solid #d1d2d3;
      border-radius: 2px 0 0 2px;
      padding: 0.25em;
      padding-left: 28px;
      margin-left: 1em;
      font-family: 'Roboto', 'Noto', sans-serif;
      font-size: 1em;
      line-height: 24px;
      color: #212121;
    }
    .downArrow {
      border-top: .36em solid #ccc;
      border-left: .36em solid transparent;
      border-right: .36em solid transparent;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top