Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,116 for _instances (0.2 sec)

  1. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    								},
    							},
    						}
    					}
    
    					instances := deployment.New(ctx, t.Clusters().Configs()...).WithConfig(echoConfig).BuildOrFail(t)
    					checkInjectedValues(t, instances, tc.expected)
    				})
    			}
    		})
    }
    
    func checkInjectedValues(t framework.TestContext, instances echo.Instances, values map[string]string) {
    	t.Helper()
    	for _, i := range instances {
    		i := i
    		attempts := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * An object that can create new instances of various types. An {@code Instantiator}, depending on its implementation and configuration, may provide
     * a number of capabilities. Some examples:
     *
     * <ul>
     * <li>An implementation may decorate the instances in some fashion, for example to mix in the Groovy DSL, and so may return a subclass of the requested type.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       is used to construct the sample instances. In case of tie, the candidate constructors or
       *       factories are tried one after another until one can be used to construct sample
       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/vm_test.go

    				}, retry.Timeout(2*features.WorkloadEntryCleanupGracePeriod+(2*time.Second)))
    			})
    		})
    }
    
    func disconnectProxy(t framework.TestContext, pilot string, instance echo.Instance) {
    	proxyID := strings.Join([]string{instance.WorkloadsOrFail(t)[0].PodName(), instance.Config().Namespace.Name()}, ".")
    	cmd := "pilot-discovery request GET /debug/force_disconnect?proxyID=" + proxyID
    	stdOut, _, err := t.Clusters().Default().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    							for _, c := range cases {
    								if c.updateLabel {
    									// skip updating pod labels for VM
    									if to.Config().DeployAsVM {
    										continue
    									}
    									for _, instance := range to.Instances() {
    										err := instance.UpdateWorkloadLabel(map[string]string{"foo": "bla"}, nil)
    										if err != nil {
    											t.Fatal(err)
    										}
    									}
    								}
    								newAuthzTest().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/multi_root_test.go

    			for _, cluster := range t.Clusters() {
    				t.NewSubTest(fmt.Sprintf("From %s", cluster.StableName())).Run(func(t framework.TestContext) {
    					verify := func(ctx framework.TestContext, from echo.Instance, to echo.Instances, s scheme.Instance, success bool) {
    						want := "success"
    						if !success {
    							want = "fail"
    						}
    						name := fmt.Sprintf("server:%s[%s]", to[0].Config().Service, want)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Interners.java

        }
      }
    
      /** Returns a fresh {@link InternerBuilder} instance. */
      public static InternerBuilder newBuilder() {
        return new InternerBuilder();
      }
    
      /**
       * Returns a new thread-safe interner which retains a strong reference to each instance it has
       * interned, thus preventing these instances from being garbage-collected. If this retention is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

        /**
         * Retrieves all instances of {@link ResolvedComponentResult} from the graph,
         * e.g. all nodes of the dependency graph.
         *
         * @return all nodes of the dependency graph.
         */
        Set<ResolvedComponentResult> getAllComponents();
    
        /**
         * Applies given action for each component.
         * An instance of {@link ResolvedComponentResult} is passed as parameter to the action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	store.addInstances(cpKey, instances)
    
    	// 1. test getByIP
    	gotInstances := store.getByIP("1.1.1.1")
    	if !reflect.DeepEqual(instances, gotInstances) {
    		t.Errorf("got unexpected instances : %v", gotInstances)
    	}
    
    	// 2. test getAll
    	gotInstances = store.getAll()
    	if !reflect.DeepEqual(instances, gotInstances) {
    		t.Errorf("got unexpected instances : %v", gotInstances)
    	}
    
    	// 3. test getByKey
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/common/deployment/namespace.go

    	D echo.Instances
    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    	// Standard echo app with TPROXY interception mode to be used by tests
    	Tproxy echo.Instances
    	// Headless echo app to be used by tests
    	Headless echo.Instances
    	// StatefulSet echo app to be used by tests
    	StatefulSet echo.Instances
    	// ProxylessGRPC echo app to be used by tests
    	ProxylessGRPC echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top