Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 336 for Discover (0.25 sec)

  1. api/openapi-spec/v3/apis_openapi.json

                "version": "v1"
              }
            ]
          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
            "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractIterator.java

     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
     * such as {@link java.io.Reader#read()}, do not expose this information; the only way to discover
     * whether there is any data left is by trying to retrieve it. These types of data sources are
     * ordinarily difficult to write iterators for. But using this class, one must implement only the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                if (nodeInitializer != null) {
                    actions.putAll(nodeInitializer.getActions(reference, descriptor));
                }
                if (!projections.isEmpty()) {
                    action(ModelActionRole.Discover, AddProjectionsAction.of(reference, descriptor, projections));
                }
                return new DefaultModelRegistration(reference.getPath(), descriptor, hidden, actions);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    [source,kotlin]
    ----
    plugins {
        id("org.springframework.boot") version "3.1.5"
    }
    ----
    
    Community plugins can be published at the link:http://plugins.gradle.org/[Gradle Plugin Portal], where other Gradle users can easily discover and use them.
    
    == 3. Local plugins
    
    Custom or local plugins are developed and used within a specific project or organization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/topology_manager.go

    	numaInfo, err := NewNUMAInfo(topology, opts)
    	if err != nil {
    		return nil, fmt.Errorf("cannot discover NUMA topology: %w", err)
    	}
    
    	if topologyPolicyName != PolicyNone && len(numaInfo.Nodes) > maxAllowableNUMANodes {
    		return nil, fmt.Errorf("unsupported on machines with more than %v NUMA Nodes", maxAllowableNUMANodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractIterator.java

     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
     * such as {@link java.io.Reader#read()}, do not expose this information; the only way to discover
     * whether there is any data left is by trying to retrieve it. These types of data sources are
     * ordinarily difficult to write iterators for. But using this class, one must implement only the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_netbsd.go

    	var parts []string
    	last := 0
    	for i := 0; i < len(name); i++ {
    		if name[i] == '.' {
    			parts = append(parts, name[last:i])
    			last = i + 1
    		}
    	}
    	parts = append(parts, name[last:])
    
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    		}
    		for _, node := range nodes {
    			n := make([]byte, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    Because most modules are currently published without Gradle Module Metadata, capabilities are not always automatically discovered by Gradle.
    It is however interesting to use _rules_ to declare component capabilities in order to discover conflicts as soon as possible, during the build instead of runtime.
    
    A typical example is whenever a component is relocated at different coordinates in a new release.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/flag.go

    	name = name[strings.LastIndex(name, `/`)+1:]
    	name = name[strings.LastIndex(name, `\`)+1:]
    	name = strings.TrimSuffix(name, ".exe")
    
    	p := ""
    
    	if s == "goexperiment" {
    		// test/run.go uses this to discover the full set of
    		// experiment tags. Report everything.
    		p = " X:" + strings.Join(buildcfg.Experiment.All(), ",")
    	} else {
    		// If the enabled experiments differ from the baseline,
    		// include that difference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/discovery.go

    	switch {
    	case cfg.Discovery.File != nil:
    		kubeConfigPath := cfg.Discovery.File.KubeConfigPath
    		if isHTTPSURL(kubeConfigPath) {
    			return https.RetrieveValidatedConfigInfo(kubeConfigPath, timeout)
    		}
    		return file.RetrieveValidatedConfigInfo(kubeConfigPath, timeout)
    	case cfg.Discovery.BootstrapToken != nil:
    		return token.RetrieveValidatedConfigInfo(&cfg.Discovery, timeout)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top