Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Test4 (0.13 sec)

  1. test/fixedbugs/issue13799.go

    	for iter := 0; ; iter++ {
    		if iter%50 == 0 {
    			fmt.Println(iter) // ERROR "iter escapes to heap$" "... argument does not escape$"
    		}
    		test1(iter)
    		test2(iter)
    		test3(iter)
    		test4(iter)
    		test5(iter)
    		test6(iter)
    	}
    }
    
    func test1(iter int) {
    
    	const maxI = 500
    	m := make(map[int][]int) // ERROR "make\(map\[int\]\[\]int\) escapes to heap$"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            sourceFile << """
        #import "test1"
        #include "test2"
        #import "test3"
        #include "test4"
        #import <system1>
        #import <system2>
        #include <system3>
        #import <system4>
        #include DEFINED1
        #import DEFINED2
    """
            then:
            includes == ['"test2"', '"test4"', '<system3>', 'DEFINED1'].collect { include(it) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator_test.go

    			operatorNamespace: "",
    			watchedNamespaces: "",
    		},
    		{
    			operatorNamespace: "test",
    			watchedNamespaces: "test1",
    		},
    		{
    			operatorNamespace: "",
    			watchedNamespaces: "test4, test5",
    		},
    	}
    
    	kubeClients = MockKubernetesClients
    
    	for _, test := range tests {
    		t.Run("", func(t *testing.T) {
    			args := []string{"operator", "init", "--dry-run"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin_test.go

    			registry: "test3.registry.io",
    		},
    		{
    			name:     "provide for registry 4",
    			registry: "test4.registry.io",
    		},
    	}
    
    	pluginProvider := &pluginProvider{
    		clock:          tclock,
    		lastCachePurge: tclock.Now(),
    		matchImages:    []string{"test1.registry.io", "test2.registry.io", "test3.registry.io", "test4.registry.io"},
    		cache:          cache.NewExpirationStore(cacheKeyFunc, &cacheExpirationPolicy{clock: tclock}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			history: apps.ControllerRevision{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "test4",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    					OwnerReferences:   nil,
    				},
    				Revision: 4,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test4", "<none>", int64(4), "0s"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    				},
    			},
    		},
    	}
    	destinationRuleNamespace4Local := config.Config{
    		Meta: config.Meta{
    			Name:      "rule4-local",
    			Namespace: "test4",
    		},
    		Spec: &networking.DestinationRule{
    			Host:     testhost,
    			ExportTo: []string{"test4"},
    			Subsets: []*networking.Subset{
    				{
    					Name: "subset15",
    				},
    				{
    					Name: "subset16",
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. pilot/pkg/trustbundle/trustbundle_test.go

    	server1.Close()
    	// Check server1's valid trustAnchor is no longer in the trustbundle within poll frequency window
    	expectTbCount(t, tb, 1, 6*time.Second, "server1(stopped) trustAnchor not removed from bundle")
    
    	// Test4: Update with server1, server2 and mesh pem ca
    	tb.AddMeshConfigUpdate(&meshconfig.MeshConfig{CaCertificates: []*meshconfig.MeshConfig_CertificateData{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    				Header:     header(),
    				Body:       objBody(&metav1.Status{Status: metav1.StatusSuccess}),
    			},
    			Req: expectPut,
    		},
    		// namespace scoped resource
    		{
    			Name:            "test4",
    			Namespace:       "bar",
    			NamespaceScoped: true,
    			Object: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec:       V1DeepEqualSafePodSpec(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/cshared_test.go

    	if testing.Verbose() {
    		args = append(args, "verbose")
    	}
    	out := runExe(t, nil, args...)
    	if strings.TrimSpace(out) != "PASS" {
    		t.Errorf("%v%s", args, out)
    	}
    }
    
    // test4: test signal handlers
    func TestSignalHandlers(t *testing.T) {
    	t.Parallel()
    	testSignalHandlers(t, "./libgo4", "main4.c", "testp4")
    }
    
    // test5: test signal handlers with os/signal.Notify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/events_test.go

    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "v1",
    					Kind:       "Node",
    				},
    			},
    			true,
    		}, {
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test4",
    					Namespace: metav1.NamespaceDefault,
    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "v1",
    					Kind:       "Namespace",
    				},
    			},
    			true,
    		}, {
    			&core.Event{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
Back to top