Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for test64i (0.14 sec)

  1. 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)
  2. docs/pt/docs/history-design-future.md

    ## Design
    
    Eu então dediquei algum tempo projetando a "API" de desenvolvimento que eu queria como usuário (como um desenvolvedor usando o FastAPI).
    
    Eu testei várias ideias nos editores Python mais populares: PyCharm, VS Code, e editores baseados no Jedi.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		{Resource: schema.GroupVersionResource{Resource: "myobject"}, GroupVersionKind: schema.GroupVersionKind{Group: "testapi2", Version: "test", Kind: "MyObject"}},
    		{Resource: schema.GroupVersionResource{Resource: "myObje"}, Err: true, GroupVersionKind: schema.GroupVersionKind{Group: "testapi", Version: "test", Kind: "MyObject"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  4. istioctl/pkg/metrics/metrics_test.go

    	metricCmd := Cmd(ctx)
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %s", i, strings.Join(c.Args, " ")), func(t *testing.T) {
    			testutil.VerifyOutput(t, metricCmd, c)
    		})
    	}
    }
    
    func TestAPI(t *testing.T) {
    	_, _ = prometheusAPI(fmt.Sprintf("http://localhost:%d", 1234))
    }
    
    var _ promv1.API = mockPromAPI{}
    
    func TestPrintMetrics(t *testing.T) {
    	mockProm := mockPromAPI{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 02:07:44 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/tests/object_test.cc

      EXPECT_EQ(child.Get<Integer>(String("test1"))->get(), 1);
      EXPECT_EQ(child.Get<Integer>(String("test2"))->get(), 2);
      EXPECT_EQ(child.Get<Integer>(String("test3"))->get(), 3);
      ASSERT_FALSE(child.Get<Integer>(String("test4")).status().ok());
      TF_ASSERT_OK(child.Get(String("test3")).status());
    }
    
    TEST(ObjectTest, CallFunctionOnObject) {
      Object module;
      module.Set(String("add"), Callable(TaggedValue(AddIntegers)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/cshared_test.go

    	}
    	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
    func TestSignalHandlersWithNotify(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            ExpressionEvaluator ee = createExpressionEvaluator(createDefaultProject(), null, new Properties());
            assertInstanceOf(Path.class, ee.evaluate("${session.rootDirectory}"));
        }
    
        @Test
        public void testUri() throws Exception {
            Path path = Paths.get("").toAbsolutePath();
    
            MavenSession mavenSession = createMavenSession(null);
            mavenSession.getRequest().setTopDirectory(path);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. 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)
Back to top