Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for ProtectionDomain (0.33 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         */
        @Nullable
        public byte[] getInstrumentedClass(@Nullable String className, @Nullable ProtectionDomain protectionDomain) {
            // Even though some classes don't need instrumentation, trying to query the closed TransformReplacer is still an error.
            ensureOpened();
    
            if (className == null || protectionDomain == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         */
        @Nullable
        byte[] instrumentClass(@Nullable String className, @Nullable ProtectionDomain protectionDomain, byte[] classfileBuffer);
    
        /**
         * This is called by the agent if a throwable is thrown while instrumenting a class during the call of the {@link #instrumentClass(String, ProtectionDomain, byte[])} method,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

            @Nullable ProtectionDomain protectionDomain,
            byte[] classfileBuffer
        ) {
            if (!(loader instanceof InstrumentingClassLoader)) {
                return null;
            }
            InstrumentingClassLoader instrumentingLoader = (InstrumentingClassLoader) loader;
            try {
                return instrumentingLoader.instrumentClass(className, protectionDomain, classfileBuffer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

        }
    
        private static int getCurrentJvmMajor() {
            return JavaVersion.current().majorVersionNumber
        }
    
        private static ProtectionDomain protectionDomain(File path) {
            def cs = new CodeSource(path.toURI().toURL(), null as CodeSigner[])
            return new ProtectionDomain(cs, null)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

                errorHandler = new TransformErrorHandler(name);
            }
    
            @Override
            public byte[] instrumentClass(@Nullable String className, ProtectionDomain protectionDomain, byte[] classfileBuffer) {
                return replacer.getInstrumentedClass(className, protectionDomain);
            }
    
            @Override
            public void transformFailed(@Nullable String className, Throwable cause) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClasspathInfererTest.groovy

    import org.gradle.tooling.internal.provider.AbstractClassGraphSpec
    import org.gradle.util.TestClassLoader
    import spock.lang.Issue
    
    import java.security.CodeSource
    import java.security.Permissions
    import java.security.ProtectionDomain
    import java.security.cert.Certificate
    
    class ClasspathInfererTest extends AbstractClassGraphSpec {
        def factory = new ClasspathInferer()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            }
    
            @Override
            public byte[] instrumentClass(@Nullable String className, ProtectionDomain protectionDomain, byte[] classfileBuffer) {
                return replacer.getInstrumentedClass(className, protectionDomain);
            }
    
            @Override
            public void transformFailed(@Nullable String className, Throwable cause) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        pool: poolValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        user: userValue
      scaleIO:
        fsType: fsTypeValue
        gateway: gatewayValue
        protectionDomain: protectionDomainValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        sslEnabled: true
        storageMode: storageModeValue
        storagePool: storagePoolValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          scaleIO:
            fsType: fsTypeValue
            gateway: gatewayValue
            protectionDomain: protectionDomainValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top