Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,189 for checkMin (0.21 sec)

  1. test/fixedbugs/bug468.go

    // rundir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The reflect package was not correctly checking field names
    // when checking for struct assignability.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 293 bytes
    - Viewed (0)
  2. test/method5.go

    	
    	t4 := T4{}
    	t3 := T3{&t4}
    	t2 := T2{&t3}
    	t1 := T1{t2}
    	CheckI("t4", t4, 40)
    	CheckI("&t4", &t4, 40)
    	CheckI("t3", t3, 40)
    	CheckI("&t3", &t3, 40)
    	CheckI("t2", t2, 40)
    	CheckI("&t2", &t2, 40)
    	CheckI("t1", t1, 40)
    	CheckI("&t1", &t1, 40)
    	
    	// x.M panics if x is an interface type and is nil,
    	// or if x.M expands to (*x).M where x is nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

        }
    
        static class FileCheck extends UndeclaredFileAccess {
            private final String checkKind
    
            FileCheck(String filePath, String checkKind) {
                super(filePath)
                this.checkKind = checkKind
            }
    
            @Override
            String getKotlinExpression() {
                "File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getGroovyExpression() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    			t.Errorf("failed to create ca client: %v", err)
    		}
    		t.Cleanup(cli.Close)
    		server.Authenticator.Set("fake", "")
    		checkSign(t, cli, false)
    		// Expiring the token is harder, so just switch to only allow certs
    		server.Authenticator.Set("", "istiod.istio-system.svc")
    		checkSign(t, cli, false)
    		checkSign(t, cli, false)
    	})
    	t.Run("cert never present", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/leak_test.go

    // limitations under the License.
    
    package bootstrap
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 794 bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/leak_test.go

    // limitations under the License.
    
    package distribution
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 797 bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/leak_test.go

    // limitations under the License.
    
    package route
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 790 bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/leak_test.go

    // limitations under the License.
    
    package aggregate
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 794 bytes
    - Viewed (0)
  9. pilot/pkg/trustbundle/leak_test.go

    // limitations under the License.
    
    package trustbundle
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 796 bytes
    - Viewed (0)
  10. pkg/config/mesh/kubemesh/leak_test.go

    // limitations under the License.
    
    package kubemesh
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 793 bytes
    - Viewed (0)
Back to top