Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for iprm (0.05 sec)

  1. pkg/controller/nodeipam/ipam/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package ipam provides different allocators for assigning IP ranges to nodes.
    // We currently support several kinds of IPAM allocators (these are denoted by
    // the CIDRAllocatorType):
    //   - RangeAllocator is an allocator that assigns PodCIDRs to nodes and works
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeMultiProjectBuildIntegrationTest.groovy

                ":api:ideaModule",
                ":shared:ideaModule",
                ":shared:api:ideaModule",
                ":shared:model:ideaModule",
                ":idea")
    
            def ipr = parseIpr(file('root.ipr'))
            ipr.modules.assertHasModules(
                '$PROJECT_DIR$/root.iml',
                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. cni/test/testdata/expected/YYY-istio-cni.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "istio-cni",
      "ipam": {},
      "dns": {},
      "plugin_log_level": "debug",
      "log_uds_address": "",
      "cni_event_address": "/tmp/cnieventfoo",
      "ambient_enabled": false,
      "kubernetes": {
        "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig",
        "exclude_namespaces": [
          "istio-system"
        ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 367 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

    // tag::project-before-merged[]
    idea.project.ipr {
        beforeMerged { project ->
            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    idea.module.iml {
        whenMerged { module ->
            module.dependencies*.exported = true
        }
    }
    // end::module-when-merged[]
    
    // tag::project-with-xml[]
    idea.project.ipr {
        withXml { provider ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Workspace.java

    import groovy.util.Node;
    import org.gradle.internal.xml.XmlTransformer;
    import org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject;
    
    /**
     * Represents the customizable elements of an ipr (via XML hooks everything of the ipr is customizable).
     */
    public class Workspace extends XmlPersistableConfigurationObject {
        public Workspace(XmlTransformer withXmlActions) {
            super(withXmlActions);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidr_allocator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ipam
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	"k8s.io/kubernetes/pkg/controller/nodeipam/ipam/cidrset"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. cmd/cloud-controller-manager/nodeipamcontroller.go

    	if !ccmConfig.ComponentConfig.KubeCloudShared.AllocateNodeCIDRs {
    		return nil, false, nil
    	}
    
    	// Cannot run cloud ipam controller if cloud provider is nil (--cloud-provider not set or set to 'external')
    	if cloud == nil && ccmConfig.ComponentConfig.KubeCloudShared.CIDRAllocatorType == string(ipam.CloudAllocatorType) {
    		return nil, false, errors.New("--cidr-allocator-type is set to 'CloudAllocator' but cloud provider is not configured")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

            }
        }
    
        project {
            ipr {
                whenMerged { it.wildcards += '!?*.ruby' }
            }
        }
    }
    '''
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
            assert ipr.contains('!?*.ruby')
        }
    
    
        private containsDir(path, urls) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaProjectInternal.java

    import javax.inject.Inject;
    
    @NonNullApi
    public abstract class IdeaProjectInternal extends IdeaProject {
    
        @Inject
        public IdeaProjectInternal(Project project, XmlFileContentMerger ipr) {
            super(project, ipr);
        }
    
        /**
         * Returns the user-defined value for the {@link #getLanguageLevel()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 13:32:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. cni/pkg/install/testdata/istio-cni.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "istio-cni",
      "ipam": {},
      "dns": {},
      "plugin_log_level": "debug",
      "log_uds_address": "",
      "cni_event_address": "",
      "ambient_enabled": false,
      "kubernetes": {
        "kubeconfig": "/path/to/kubeconfig",
        "exclude_namespaces": [
          ""
        ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 319 bytes
    - Viewed (0)
Back to top