Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,116 for _instances (0.18 sec)

  1. tests/integration/security/util/reachability/context.go

    	SkippedForMulticluster bool
    }
    
    var (
    	A             echo.Instances
    	B             echo.Instances
    	C             echo.Instances
    	D             echo.Instances
    	E             echo.Instances
    	Multiversion  echo.Instances
    	VM            echo.Instances
    	External      echo.Instances
    	Naked         echo.Instances
    	Headless      echo.Instances
    	HeadlessNaked echo.Instances
    )
    
    const (
    	ASvc             = "a"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// The list of all individual resources instances currently available.
    	//
    	// +listType=atomic
    	Instances []NamedResourcesInstance `json:"instances" protobuf:"bytes,1,name=instances"`
    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    // got at t1 can accidentally override that got at t2 if multiple threads are
    // running this function. Queueing ensures latest updated wins.
    func (s *Controller) edsUpdate(instances []*model.ServiceInstance) {
    	// Find all keys we need to lookup
    	keys := sets.NewWithLength[instancesKey](len(instances))
    	for _, i := range instances {
    		keys.Insert(makeInstanceKey(i))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. tests/integration/security/util/framework.go

    	Namespace3    namespace.Instance
    	A, B, C, D, E echo.Instances
    	Multiversion  echo.Instances
    	Headless      echo.Instances
    	Naked         echo.Instances
    	VM            echo.Instances
    	HeadlessNaked echo.Instances
    	All           echo.Instances
    	External      echo.Instances
    }
    
    func EchoConfig(name string, headless bool, annos map[string]string) echo.Config {
    	out := echo.Config{
    		Service:        name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         *
         * @param retentionFilter Determines which values should be retained till the next build.
         */
        <K, V> CrossBuildInMemoryCache<K, V> newCacheRetainingDataFromPreviousBuild(Predicate<V> retentionFilter);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

    	err := json.Unmarshal([]byte(smallInstance), &obj)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	instances := make([]map[string]interface{}, 0, b.N)
    	for i := 0; i < b.N; i++ {
    		instances = append(instances, runtime.DeepCopyJSON(obj))
    	}
    
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		Prune(instances[i], schema, true)
    	}
    }
    
    func BenchmarkDeepCopy(b *testing.B) {
    	b.StopTimer()
    	b.ReportAllocs()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. tests/integration/ambient/main_test.go

    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    	// All echo services
    	All echo.Instances
    	// Echo services that are in the mesh
    	Mesh echo.Instances
    	// Echo services that are not in mesh
    	MeshExternal echo.Instances
    
    	MockExternal echo.Instances
    
    	// WaypointProxies by
    	WaypointProxies map[string]ambient.WaypointProxy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

        /**
         * Sets the location of this file, using a {@link File} instance. {@link File} instances with relative paths are resolved relative to the project directory of the project
         * that owns this property instance.
         */
        void set(@Nullable File file);
    
        /**
         * Sets the location of this file, using a {@link File} instance. {@link File} instances with relative paths are resolved relative to the project directory of the project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	// test search by service selector
    	actual := FindAllInIndex(index, ByServiceSelector(selector.Namespace, labels.Instance{"app": "wle"}))
    	want := []*model.WorkloadInstance{wi1, wi2}
    
    	assert.Equal(t, len(want), len(actual))
    
    	got := map[string]*model.WorkloadInstance{}
    	for _, instance := range actual {
    		got[instance.Name] = instance
    	}
    
    	for _, expected := range want {
    		assert.Equal(t, expected, got[expected.Name])
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/builder.go

    )
    
    func Build(ctx resource.Context, configs []echo.Config) (echo.Instances, error) {
    	instances := make([]echo.Instance, len(configs))
    
    	g := multierror.Group{}
    	for i, cfg := range configs {
    		i, cfg := i, cfg
    		g.Go(func() (err error) {
    			instances[i], err = newInstance(ctx, cfg)
    			return
    		})
    	}
    
    	err := g.Wait().ErrorOrNil()
    	return instances, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top