Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for testfdfault (0.17 sec)

  1. test/ken/array.go

    	print("should fault\n")
    	x := 80
    	a[x] = 0
    	print("bad\n")
    }
    
    func main() {
    	testpdpd()
    	testpfpf()
    	testpdpf1()
    	testpdpf2()
    	//	print("testpdfault\n");	testpdfault();
    	//	print("testfdfault\n");	testfdfault();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/configset_test.go

    )
    
    func testClusterCfg() *kubeadmapi.ClusterConfiguration {
    	return &kubeadmapi.ClusterConfiguration{
    		KubernetesVersion: constants.CurrentKubernetesVersion.String(),
    	}
    }
    
    func TestDefault(t *testing.T) {
    	clusterCfg := testClusterCfg()
    	localAPIEndpoint := &kubeadmapi.APIEndpoint{}
    	nodeRegOps := &kubeadmapi.NodeRegistrationOptions{}
    
    	Default(clusterCfg, localAPIEndpoint, nodeRegOps)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 01 14:17:07 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm_test.go

    */
    
    package defaulting
    
    import (
    	"bytes"
    	"reflect"
    	"testing"
    
    	structuralschema "k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    func TestDefault(t *testing.T) {
    	tests := []struct {
    		name     string
    		json     string
    		schema   *structuralschema.Structural
    		expected string
    	}{
    		{"empty", "null", nil, "null"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pkg/log/default_test.go

    // limitations under the License.
    
    package log
    
    import (
    	"encoding/json"
    	"regexp"
    	"strconv"
    	"testing"
    	"time"
    )
    
    func testOptions() *Options {
    	return DefaultOptions()
    }
    
    func TestDefault(t *testing.T) {
    	cases := []struct {
    		f          func()
    		pat        string
    		json       bool
    		caller     bool
    		wantExit   bool
    		stackLevel Level
    	}{
    		{
    			f:   func() { Debug("Hello") },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/grpcecho_test.go

    			_, err := cw.Echo(context.Background(), &proto.EchoRequest{Message: "needle"})
    			if err != nil {
    				return err
    			}
    		}
    		return nil
    	}, retry.Timeout(5*time.Second), retry.Delay(0))
    }
    
    func TestFault(t *testing.T) {
    	tt := newConfigGenTest(t, xds.FakeOptions{
    		KubernetesObjectString: `
    apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: echo-app
      name: echo-app
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/log/log_test.go

    	if err != nil {
    		t.Fatal("pattern did not compile:", err)
    	}
    	if !matched {
    		t.Errorf("log output should match %q is %q", pattern, line)
    	}
    	SetOutput(os.Stderr)
    }
    
    func TestDefault(t *testing.T) {
    	if got := Default(); got != std {
    		t.Errorf("Default [%p] should be std [%p]", got, std)
    	}
    }
    
    func TestAll(t *testing.T) {
    	for _, testcase := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    deps.add project.dependencies.create("org.test:default-dependency:1.1")
                }
    """
    
            when:
            succeeds "publish"
    
            then:
            outputDoesNotContain(IvyComponentParser.PUBLICATION_WARNING_FOOTER)
            javaLibrary.assertPublishedAsJavaModule()
            javaLibrary.assertApiDependencies("org.test:default-dependency:1.1")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
Back to top