Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for asNode (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

            private final String className;
            private final Lazy<MethodNode> asNode;
            private final Collection<JvmBytecodeCallInterceptor> externalInterceptors;
            private final BytecodeInterceptorFilter interceptorFilter;
    
            public InstrumentingMethodVisitor(InstrumentingVisitor owner, MethodVisitor methodVisitor, Lazy<MethodNode> asNode, ClassData classData, JvmBytecodeInterceptorSet externalInterceptors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

                                        declareScalaSdk(scalaCompilerLibraries.get(project.getPath()), xmlProvider.asNode());
                                    } else {
                                        declareScalaFacet(scalaCompilerLibraries.get(project.getPath()), xmlProvider.asNode());
                                    }
                                }
                            });
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *       generateTo = file('secret-modules-folder')
     *
     *       //if you want to mess with the resulting XML in whatever way you fancy
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLoveGradle', 'true')
     *         node.appendNode('butAlso', 'I find increasing pleasure tinkering with output *.iml contents. Yeah!!!')
     *       }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ear {
        deploymentDescriptor {
            version = "1.3"
            withXml {
                asElement()
            }
        }
    }
    ----
    ======
    =====
    
    If you happen to use `asNode()` instead of `asElement()` then nothing changes given `asNode()` simply ignores external DTDs.
    
    You can work around this by running your build with the `javax.xml.accessExternalDTD` system property set to `http`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Task.setOnlyIf(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Task.java:0)
    Method <org.gradle.api.XmlProvider.asNode()> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (XmlProvider.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. .devcontainer/devcontainer.json

          "ghcr.io/devcontainers/features/java:1": {
              "version": "17"
          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 18 23:34:57 UTC 2024
    - 429 bytes
    - Viewed (0)
  7. .devcontainer/devcontainer.json

        "ghcr.io/mpriscella/features/kind:1": {}
      },
      "customizations": {
        "vscode": {
          "extensions": [
            "golang.go",
            "rust-lang.rust-analyzer",
            "eamodio.gitlens",
            "zxh404.vscode-proto3",
            "ms-azuretools.vscode-docker",
            "redhat.vscode-yaml",
            "IBM.output-colorizer"
          ],
          "settings": {
            "files.eol": "\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 879 bytes
    - Viewed (0)
  8. security/pkg/server/ca/node_auth.go

    	index := kclient.CreateIndex[SaNode, *v1.Pod](pods, func(pod *v1.Pod) []SaNode {
    		if len(pod.Spec.NodeName) == 0 {
    			return nil
    		}
    		if len(pod.Spec.ServiceAccountName) == 0 {
    			return nil
    		}
    		return []SaNode{{
    			ServiceAccount: types.NamespacedName{
    				Namespace: pod.Namespace,
    				Name:      pod.Spec.ServiceAccountName,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. .gitignore

    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    [._]*.s[a-w][a-z]
    [._]s[a-w][a-z]
    *.un~
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    # Intellij
    *.ipr
    *.iml
    .idea
    .DS_Store
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    .vscode/
    repo/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 178 bytes
    - Viewed (0)
Back to top