Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for protectionDomain (0.64 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. staging/src/k8s.io/client-go/applyconfigurations/core/v1/scaleiopersistentvolumesource.go

    	SecretRef        *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	SSLEnabled       *bool                              `json:"sslEnabled,omitempty"`
    	ProtectionDomain *string                            `json:"protectionDomain,omitempty"`
    	StoragePool      *string                            `json:"storagePool,omitempty"`
    	StorageMode      *string                            `json:"storageMode,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            def cl = loader.loadClass(className)
            cl.classLoader.is(loader)
            cl.protectionDomain.codeSource.location == classesDir.toURI().toURL()
            cl.package.name == "org.gradle.api.plugins"
    
            def obj = JavaReflectionUtil.newInstance(cl)
            obj instanceof GroovyObject
            obj.getMetaClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top