Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 918 for Instances (1.68 sec)

  1. security/pkg/server/ca/node_auth_test.go

    			caller:                  ztunnelCaller,
    			trustedAccounts:         allowZtunnel,
    			requestedIdentityString: podSameNode.Identity(),
    			pods:                    []pod{ztunnelPod},
    			wantErr:                 "no instances",
    		},
    		{
    			name:                    "allowed identities, on node",
    			caller:                  ztunnelCaller,
    			trustedAccounts:         allowZtunnel,
    			requestedIdentityString: podSameNode.Identity(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		t.Run(strings.Join(tt.externalSvc.Spec.(*networking.ServiceEntry).Hosts, "_"), func(t *testing.T) {
    			s := &Controller{}
    			instances := s.convertServiceEntryToInstances(*tt.externalSvc, nil)
    			sortServiceInstances(instances)
    			sortServiceInstances(tt.out)
    			if err := compare(t, instances, tt.out); err != nil {
    				t.Fatalf("testcase: %v\n%v", tt.externalSvc.Name, err)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

              "resource.type=\"gce_instance\"
               logName=\"projects/${PROJECT}/logs/compute.googleapis.com%2Factivity_log\"
               (jsonPayload.event_subtype=\"compute.instances.hostError\" OR jsonPayload.event_subtype=\"compute.instances.automaticRestart\")
               jsonPayload.resource.name:\"${group}\"
               timestamp >= \"${creation_timestamp}\""
      done
    }
    
    function main() {
      print-deprecation-note
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. tests/integration/security/egress_sidecar_tls_origination_test.go

    }
    
    func newTLSSidecarDestinationRule(t framework.TestContext, to echo.Instances, destinationRuleMode string,
    	workloadSelector string, credentialName string, clientNamespace namespace.Instance,
    ) {
    	args := map[string]any{
    		"to":               to,
    		"Mode":             destinationRuleMode,
    		"CredentialName":   credentialName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    type ConfigInput struct {
    	// Name of the test
    	Name string
    	// Name of the test config file to use. If not set, <Name> is used
    	ConfigName string
    	// Number of services to make
    	Services int
    	// Number of instances to make
    	Instances int
    	// If set, only run for this config type
    	OnlyRunType string
    	// If set, skip runs for this config type
    	SkipType string
    	// ResourceType of proxy to generate configs for. If not set, sidecar is used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			input := readConfig(t, fmt.Sprintf("testdata/%s.yaml", tt.name), validator, nil)
    			// Setup a few preconfigured services
    			instances := []*model.ServiceInstance{}
    			for _, svc := range services {
    				instances = append(instances, &model.ServiceInstance{
    					Service:     svc,
    					ServicePort: ports[0],
    					Endpoint:    &model.IstioEndpoint{EndpointPort: 8080},
    				}, &model.ServiceInstance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer noxuWatch.Stop()
    
    	instances := make(map[string]*unstructured.Unstructured)
    	ns1 := "namespace-1"
    	noxuNamespacedResourceClient1 := newNamespacedCustomResourceClient(ns1, dynamicClient, noxuDefinition)
    	instances[ns1] = createInstanceWithNamespaceHelper(t, ns1, "foo1", noxuNamespacedResourceClient1, noxuDefinition)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload.go

    	createCmd.PersistentFlags().StringSliceVarP(&resourceLabels, "labels", "l", nil, "The labels to apply to the workload instances; e.g. -l env=prod,vers=2")
    	createCmd.PersistentFlags().StringSliceVarP(&annotations, "annotations", "a", nil, "The annotations to apply to the workload instances")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // it in multiple C++ source files and instantiate it multiple times.
    //
    // To distinguish different instances of the pattern, the first
    // argument to the INSTANTIATE_* macro is a prefix that will be added
    // to the actual test case name.  Remember to pick unique prefixes for
    // different instances.
    typedef testing::Types<char, int, unsigned int> MyTypes;
    INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		common.KubeSettings(t).MCSAPIVersion)
    }
    
    func runForAllClusterCombinations(
    	t framework.TestContext,
    	fn func(t framework.TestContext, from echo.Instance, to echo.Target),
    ) {
    	t.Helper()
    	echotest.New(t, echos.Instances).
    		WithDefaultFilters(1, 1).
    		FromMatch(serviceA).
    		ToMatch(serviceB).
    		Run(fn)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top