Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,794 for baseIdx (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/util/internal/GroovyDependencyUtil.java

    public class GroovyDependencyUtil {
        /**
         * Returns Groovy artifact group name based on the Groovy version.
         */
        public static String groovyGroupName(String version) {
            return groovyGroupName(VersionNumber.parse(version));
        }
    
        /**
         * Returns Groovy artifact group name based on the Groovy version.
         */
        public static String groovyGroupName(VersionNumber version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 22 21:22:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

        # by default this will be the first file found in the cni-conf-dir
        # Example
        # cniConfFileName: 10-calico.conflist
    
        # CNI bin and conf dir override settings
        # defaults:
        cniBinDir: "" # Auto-detected based on version; defaults to /opt/cni/bin.
        cniConfDir: /etc/cni/net.d
        cniConfFileName: ""
        # This directory must exist on the node, if it does not, consult your container runtime
        # documentation for the appropriate path.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. releasenotes/notes/add-release-notes-generation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    issue:
    - https://github.com/istio/istio/issues/23622
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 254 bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaLanguageVersion.java

         *
         * @since 6.8
         * @return the version number
         */
        @Override
        String toString();
    
        /**
         * Indicates if this version can compile or run code based on the passed in language version.
         * <p>
         * For example, Java 14 can compile or run code from Java 11, but not the opposite.
         *
         * @param other the language version to check
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/README.md

    * `informer-gen` - creates informers for CustomResources which offer an event based
    interface to react on changes of CustomResources on the server
    * `lister-gen` - creates listers for CustomResources which offer a read-only caching layer for GET and LIST requests.
    
    Changes should not be made to these files manually, and when creating your own
    controller based off of this implementation you should not copy these files and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  6. releasenotes/notes/endpoint-slice.yaml

    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the control plane to read `EndpointSlice` insead of `Endpoints`
      for service discovery for Kubernetes 1.21 or later. To switch back to the old
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 18:34:02 UTC 2021
    - 322 bytes
    - Viewed (0)
  7. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/crdserverscheme/unstructured.go

    )
    
    // UnstructuredObjectTyper provides a runtime.ObjectTyper implementation for
    // runtime.Unstructured object based on discovery information.
    type UnstructuredObjectTyper struct {
    }
    
    // NewUnstructuredObjectTyper returns a runtime.ObjectTyper for
    // unstructured objects based on discovery information. It accepts a list of fallback typers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 06 18:08:14 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

        private final List<MavenProject> allProjects;
    
        private final Map<MavenProject, Integer> order;
    
        private final Map<String, MavenProject> projects;
    
        /**
         * Creates a new project dependency graph based on the specified projects.
         *
         * @param projects The projects to create the dependency graph with
         * @throws DuplicateProjectException
         * @throws CycleDetectedException
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/policyattachment.go

    }
    
    // WorkloadPolicyMatcher performs policy selection either using targetRef or label selectors.
    // Label selection uses the workload labels.
    // TargetRef selection uses either the workload's namespace + the gateway name based on labels,
    // or the Services the workload is a part of.
    type WorkloadPolicyMatcher struct {
    	Namespace      string
    	WorkloadLabels labels.Instance
    	IsWaypoint     bool
    	Service        string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top