Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for planes (0.11 sec)

  1. pkg/istio-agent/xds_proxy.go

    package istioagent
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"math"
    	"net"
    	"net/http"
    	"net/url"
    	"strings"
    	"sync"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"go.uber.org/atomic"
    	"golang.org/x/net/http2"
    	google_rpc "google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_tpu_device.cc

    }
    
    #if !defined(PLATFORM_GOOGLE)
    
    // We automatically register this if we are building for open source. For
    // Google platforms, we initialize these devices in other places.
    
    REGISTER_XLA_LAUNCH_KERNEL(DEVICE_TPU_NODE, XlaLocalLaunchOp, kTpuAllTypes);
    REGISTER_XLA_COMPILE_KERNEL(DEVICE_TPU_NODE, XlaCompileOp, kTpuAllTypes);
    REGISTER_XLA_RUN_KERNEL(DEVICE_TPU_NODE, XlaRunOp, kTpuAllTypes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/configmap.go

    	_, err := c.Kube().CoreV1().ConfigMaps(cm.namespace).Update(context.TODO(), cfgMap, metav1.UpdateOptions{})
    	if err != nil {
    		return err
    	}
    	if c.IsExternalControlPlane() {
    		// Normal control plane uses ConfigMap informers to load mesh config. This is ~instant.
    		// The external config uses a file mounted ConfigMap. This is super slow, but we can trigger it explicitly:
    		// https://github.com/kubernetes/kubernetes/issues/30189
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    	// Note: this must be a subset of the schemas defined in the codegen
    	schemas collection.Schemas
    
    	// domainSuffix for the config metadata
    	domainSuffix string
    
    	// revision for this control plane instance. We will only read configs that match this revision.
    	revision string
    
    	// kinds keeps track of all cache handlers for known types
    	kinds   map[config.GroupVersionKind]kclient.Untyped
    	kindsMu sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network.go

    		return nil
    	}
    
    	// Gateway with istio-remote: only discover this from the config cluster
    	// this is a way to reference a gateway that lives in a place that this control plane
    	// won't have API server access. Nothing will be deployed for these Gateway resources.
    	if !n.discoverRemoteGatewayResources && gw.Spec.GatewayClassName == constants.RemoteGatewayClassName {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/echos.go

    			}},
    		}
    		defaultConfigs = append(defaultConfigs, sotw)
    	}
    
    	if !t.Clusters().IsMulticluster() {
    		// TODO when agent handles secure control-plane connection for grpc-less, deploy to "remote" clusters
    		proxylessGRPC := echo.Config{
    			Service:        ProxylessGRPCSvc,
    			ServiceAccount: true,
    			Ports:          ports.All(),
    			Subsets: []echo.SubsetConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds_test
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    }
    
    // pages64 returns a 64-bit bitmap representing a block of 64 pages aligned
    // to 64 pages. The returned block of pages is the one containing the i'th
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    	"crypto/tls"
    	"crypto/x509"
    	"encoding/json"
    	"fmt"
    	"net"
    	"os"
    	"path"
    	"path/filepath"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/reflection"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// ResourceSlice objects into the driver, with kubelet
    	// just acting as a REST proxy. The advantage of that will
    	// be that kubelet won't need to support the same
    	// resource API version as the driver and the control plane.
    	// With that approach, the driver will be able to match
    	// up objects more intelligently.
    	numObsoleteSlices := len(obsoleteSlices)
    	for index, resource := range driverResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top