Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 833 for Discover (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// List of objects
    	Items []runtime.RawExtension `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // APIVersions lists the versions that are available, to allow clients to
    // discover the API at /api, which is the root path of the legacy v1 API.
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type APIVersions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/Monitor.java

       * since the concurrency control must manage multiple Conditions. So this method must generally be
       * called when waits are interrupted.
       *
       * <p>On the other hand, if a signalled thread wakes up to discover that its guard is still not
       * satisfied, it does *not* need to call this method before returning to wait. This can only
       * happen due to spurious wakeup (ignorable) or another thread acquiring the lock before the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    		// of every root. The upgraded roots are in addition to the original
    		// roots, so we will have enough information to trace a path to each
    		// conflict we discover from one or more of the original roots.
    		mg, upgradedRoots, err := extendGraph(ctx, rootPruning, roots, selectedRoot)
    		if err != nil {
    			var tooNew *gover.TooNewError
    			if mg == nil || errors.As(err, &tooNew) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    You'll discover that Gradle has a rich API for working with dependencies — one that takes time to master, but is straightforward to use for common scenarios.
    
    
    [[sec:compile]]
    == Compiling your code
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/discovery.go

    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/discovery"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    // ClientDiscoveryResolver uses client-go discovery to resolve schemas at run time.
    type ClientDiscoveryResolver struct {
    	Discovery discovery.DiscoveryInterface
    }
    
    var _ SchemaResolver = (*ClientDiscoveryResolver)(nil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    For code hosted on other servers, import paths may either be qualified
    with the version control type, or the go tool can dynamically fetch
    the import path over https/http and discover where the code resides
    from a <meta> tag in the HTML.
    
    To declare the code location, an import path of the form
    
    	repository.vcs/path
    
    specifies the given repository, with or without the .vcs suffix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/runtime/arena.go

    	// In other words, every time a new chunk becomes active, its appended to this
    	// list.
    	refs []unsafe.Pointer
    
    	// defunct is true if free has been called on this arena.
    	//
    	// This is just a best-effort way to discover a concurrent allocation
    	// and free. Also used to detect a double-free.
    	defunct atomic.Bool
    }
    
    // newUserArena creates a new userArena ready to be used.
    func newUserArena() *userArena {
    	a := new(userArena)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/discovery.go

    		ctx,
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Core().V1().Services(),
    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		controllerContext.InformerFactory.Discovery().V1().EndpointSlices(),
    		controllerContext.ComponentConfig.EndpointSliceController.MaxEndpointsPerSlice,
    		controllerContext.ClientBuilder.ClientOrDie("endpointslice-controller"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/discovery.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    	"sort"
    	"strconv"
    	"sync"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/uuid"
    	"go.uber.org/atomic"
    	"golang.org/x/time/rate"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/autoregistration"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/memory/discovery.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/workloadapi"
    )
    
    // ServiceDiscovery is a mock discovery interface
    type ServiceDiscovery struct {
    	services map[host.Name]*model.Service
    
    	handlers model.ControllerHandlers
    
    	networkGateways []model.NetworkGateway
    	model.NetworkGatewaysHandler
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top