Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for iprm (0.05 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            when:
            applyPluginToProjects()
    
            then:
            project.idea instanceof IdeaModel
            project.idea.project != null
            project.idea.project.location.get().asFile == project.file("test-project.ipr")
            project.idea.module.outputFile == project.file("test-project.iml")
        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

                """
            }
        }
    
        def idea(TestFile build = buildA) {
            executer.inDirectory(build)
            succeeds(":idea")
        }
    
        def ipr(TestFile projectDir = buildA) {
            def iprFile = projectDir.file(projectDir.name + ".ipr")
            assert iprFile.exists()
            return IdeaFixtures.parseIpr(iprFile)
        }
    
        def iml(TestFile projectDir = buildA) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiBuildIntegrationTest.groovy

        String libraryPluginId = "java-library"
    
        @Override
        IdeaProjectFixture workspace(TestFile workspaceDir, String ideWorkspaceName) {
            return IdeaFixtures.parseIpr(workspaceDir.file(ideWorkspaceName + ".ipr"))
        }
    
        @Override
        IdeaModuleFixture project(TestFile projectDir, String ideProjectName) {
            return IdeaFixtures.parseIml(projectDir.file(ideProjectName + ".iml"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/names/controller_names.go

    	BootstrapSignerController                    = "bootstrap-signer-controller"
    	TokenCleanerController                       = "token-cleaner-controller"
    	NodeIpamController                           = "node-ipam-controller"
    	NodeLifecycleController                      = "node-lifecycle-controller"
    	TaintEvictionController                      = "taint-eviction-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Path.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    
    /**
     * Represents a path in a format as used often in ipr and iml files.
     */
    public class Path {
    
        private final String url;
        private final String relPath;
        private final String canonicalUrl;
    
        public Path(String url) {
            this(url, url, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaProject.java

            if (ideaProject == null) {
                return super.getXmlTransformer();
            }
            return ideaProject.getIpr().getXmlTransformer();
        }
    
        /**
         * output *.ipr file
         */
        @Override
        public File getOutputFile() {
            if (ideaProject == null) {
                return super.getOutputFile();
            }
            return ideaProject.getOutputFile();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Jdk.java

     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    
    /**
     * Represents information for the project Java SDK.
     * This translates to attributes of the ProjectRootManager element in the ipr.
     */
    public class Jdk {
    
        private boolean assertKeyword;
        private boolean jdk15;
        private String languageLevel;
        private String projectJdkName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. cmd/cloud-controller-manager/main.go

    	controllerInitializers[kcmnames.NodeIpamController] = app.ControllerInitFuncConstructor{
    		// "node-controller" is the shared identity of all node controllers, including node, node lifecycle, and node ipam.
    		// See https://github.com/kubernetes/kubernetes/pull/72764#issuecomment-453300990 for more context.
    		InitContext: app.ControllerInitContext{
    			ClientName: "node-controller",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader_test.go

    	es1val := sb1.Value()
    	if 0 != es1val {
    		t.Errorf("expected es1 value of 0, got %v", es1val)
    	}
    
    	// Test other misc methods
    	irm := ldr.IsReflectMethod(es1)
    	if 0 != es1val {
    		t.Errorf("expected IsReflectMethod(es1) value of 0, got %v", irm)
    	}
    }
    
    func sameRelocSlice(s1 *Relocs, s2 []Reloc) bool {
    	if s1.Count() != len(s2) {
    		return false
    	}
    	for i := 0; i < s1.Count(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. samples/kind-lb/setupkind.sh

    addrName="IPAddress"
    ipv4Prefix=""
    ipv6Prefix=""
    
    # Get both ipv4 and ipv6 gateway for the cluster
    gatewaystr=$(docker network inspect -f '{{range .IPAM.Config }}{{ .Gateway }} {{end}}' kind | cut -f1,2)
    read -r -a gateways <<< "${gatewaystr}"
    for gateway in "${gateways[@]}"; do
      if [[ "$gateway" == *"."* ]]; then
        ipv4Prefix=$(echo "${gateway}" |cut -d'.' -f1,2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top