Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,914 for based (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getJvmPluginServices().configureAsRuntimeClasspath(testAggregation);
            });
    
            // convention for synthesizing reports based on existing test suites in "this" project
            project.getPlugins().withId("jvm-test-suite", plugin -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pkg/credentialprovider/secrets/secrets_test.go

    // fakeKeyring is a fake docker auth config keyring
    type fakeKeyring struct {
    	auth []credentialprovider.AuthConfig
    	ok   bool
    }
    
    // Lookup implements the DockerKeyring method for fetching credentials based on image name.
    // Returns fake results based on the auth and ok fields in fakeKeyring
    func (f *fakeKeyring) Lookup(image string) ([]credentialprovider.AuthConfig, bool) {
    	return f.auth, f.ok
    }
    
    func Test_MakeDockerKeyring(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
Back to top