Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,116 for _instances (0.37 sec)

  1. tests/integration/pilot/headers_test.go

      attemptCount:
        disabled: true
      envoyDebugHeaders:
        disabled: true
      metadataExchangeHeaders:
        mode: IN_MESH`},
    					},
    				},
    			}
    			instances := deployment.New(t).
    				WithConfig(cfg).
    				BuildOrFail(t)
    			instance := instances[0]
    			proxyHeaders := sets.New(
    				"server",
    				"x-forwarded-client-cert",
    				"x-request-id",
    			)
    
    			allowedClientHeaders := sets.New(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       * exceptions in methods like Futures.getUnchecked and LoadingCache.get.)
       */
    
      /**
       * Creates a new instance with {@code null} as its detail message and no cause.
       *
       * @deprecated Prefer {@linkplain UncheckedExecutionException(Throwable)} a constructor that
       *     accepts a cause: Users of this class typically expect for instances to have a non-null
       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tests/integration/security/filebased_tls_origination/main_test.go

    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	inst            istio.Instance
    	apps            deployment.TwoNamespaceView
    	client          echo.Instances
    	server          echo.Instances
    	internalClient  echo.Instances
    	externalService echo.Instances
    	appNS           namespace.Instance
    	serviceNS       namespace.Instance
    	customConfig    []echo.Config
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/authz/server.go

    type Server interface {
    	Namespace() namespace.Instance
    
    	// Providers returns the list of Provider instances.
    	Providers() []Provider
    }
    
    // New creates a new authz Server.
    func New(ctx resource.Context, ns namespace.Instance) (Server, error) {
    	return newKubeServer(ctx, ns)
    }
    
    // NewOrFail calls New and fails if an error occurs.
    func NewOrFail(t framework.TestContext, ns namespace.Instance) Server {
    	t.Helper()
    	s, err := New(t, ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 23:39:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Interner.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface Interner<E> {
      /**
       * Chooses and returns the representative instance for any of a collection of instances that are
       * equal to each other. If two {@linkplain Object#equals equal} inputs are given to this method,
       * both calls will return the same instance. That is, {@code intern(a).equals(a)} always holds,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    	}
    	for _, instance := range instances {
    		// For service instances with the same port,
    		// we still need to capture all the instances on this port, as its required to populate telemetry metadata
    		// The first instance will be used as the "primary" instance; this means if we have an conflicts between
    		// Services the first one wins
    		port := int(instance.Port.TargetPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pkg/apis/apiserverinternal/types.go

    	Spec StorageVersionSpec
    
    	// API server instances report the version they can decode and the version they
    	// encode objects to when persisting objects in the backend.
    	Status StorageVersionStatus
    }
    
    // StorageVersionSpec is an empty spec.
    type StorageVersionSpec struct{}
    
    // StorageVersionStatus API server instances report the versions they can decode and the version they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/shutdown.sh

    preemptible=$(curl "http://metadata.google.internal/computeMetadata/v1/instance/scheduling/preemptible" -H "Metadata-Flavor: Google")
    if [ "${preemptible}" == "TRUE" ]; then
        echo "Shutting down! Sleeping for a minute to let the node gracefully terminate"
        # https://cloud.google.com/compute/docs/instances/stopping-or-deleting-an-instance#delete_timeout
        sleep 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 03:46:45 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnector.java

     *
     * <p>{@code GradleConnector} instances are not thread-safe. If you want to use a {@code GradleConnector} concurrently you must always create a
     * new instance for each thread using {@link #newConnector()}. Note, however, the {@link ProjectConnection} instances that a connector creates are completely thread-safe.</p>
     *
     * <h2>Gradle version compatibility</h2>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    			if instance.Allocated {
    				continue
    			}
    			if c.filter != nil {
    				okay, err := c.filter.Evaluate(ctx, instance.Instance.Attributes)
    				if err != nil {
    					return nil, fmt.Errorf("evaluate filter CEL expression: %w", err)
    				}
    				if !okay {
    					continue
    				}
    			}
    			okay, err := request.Evaluate(ctx, instance.Instance.Attributes)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top