Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for iprm (0.03 sec)

  1. cni/pkg/install/testdata/list-with-istio.conflist.golden

        {
          "args": {
            "labels": {
              "appVersion": "1.0"
            }
          },
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            ipr.bytecodeTargetLevel.module.find { it.@name == "child1" }.@target == "1.6"
            ipr.bytecodeTargetLevel.module.find { it.@name == "child2" }.@target == "1.5"
            !ipr.bytecodeTargetLevel.module.find { it.@name == "child3" }
    
            when:
            succeeds "idea"
    
            then:
            ipr.bytecodeTargetLevel.children().size() == 3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaProjectFixture.groovy

    class IdeaProjectFixture extends IdeWorkspaceFixture {
        private final GPathResult ipr
        private final TestFile file
    
        IdeaProjectFixture(TestFile file, GPathResult ipr) {
            this.file = file
            this.ipr = ipr
        }
    
        String getLanguageLevel() {
            if (ipr******@****.***() != 0) {
                return ipr.component.@languageLevel
            }
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   project {
     *     ipr {
     *       //you can tinker with the output *.ipr file before it's written out
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLove', 'tinkering with the output *.ipr file!')
     *       }
     *
     *       //closure executed after *.ipr content is loaded from existing file
     *       //but before gradle build information is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. cni/test/testdata/pre/calico.conflist

    {
      "cniVersion": "0.3.1",
      "name": "k8s-pod-network",
      "plugins": [
        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "mtu": 1500,
          "plugin_log_level": "info",
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
  6. cmd/cloud-controller-manager/.import-restrictions

          - k8s.io/kubernetes/pkg/controller/nodeipam/config
          - k8s.io/kubernetes/pkg/controller/nodeipam/ipam
          - k8s.io/kubernetes/pkg/controller/nodeipam/ipam/cidrset
          - k8s.io/kubernetes/pkg/controller/nodeipam/ipam/sync
          - k8s.io/kubernetes/pkg/controller/nodeipam/ipam/test
          - k8s.io/kubernetes/pkg/controller/testutil
          - k8s.io/kubernetes/pkg/controller/util/node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/bridge.conf.golden

            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "name": "dbnet",
          "type": "bridge"
        },
        {
          "ambient_enabled": false,
          "cni_event_address": "",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 716 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                }
            """
    
            //given
            executer.withTasks('idea').run()
            def projectContent = getFile([:], 'master.ipr').text
            def moduleContent = getFile([:], 'master.iml').text
    
            executer.withTasks('idea').run()
            def projectContentAfterMerge = getFile([:], 'master.ipr').text
            def moduleContentAfterMerge = getFile([:], 'master.iml').text
    
            //then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

            )
    
            //then
            def ipr = getFile([:], 'someBetterName.ipr').text
            assert ipr.contains('project-jdk-name="1.3"')
            assert ipr.contains('!?*.ruby')
            assert !ipr.contains('someProjectThatWillBeExcluded')
            assert ipr.contains('hey buddy!')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void configuresHooks() {
            def ipr = file('root.ipr')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - blockaffinities
        verbs:
          - watch
      # The Calico IPAM migration needs to get daemonsets. These permissions can be
      # removed if not upgrading from an installation using host-local IPAM.
      - apiGroups: ["apps"]
        resources:
          - daemonsets
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
Back to top