Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 356 for loadsys (0.12 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    
    /**
     * Provides methods to interact with the Java agent shipped with Gradle. Because of the different class loaders, it is hard to query the Agent class directly.
     * <p>
     * The agent class must follow a special protocol to be recognized properly: the class should have a method:
     * <pre>
     *     public static boolean isApplied()
     * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_ppc64x.s

    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    	MOVD	$48, R16
    	ANDCC	$0x3F, R5, R5	// len%64==0?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/StaticLockingMavenPublisher.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A MavenPublisher that restricts publishing to a single thread per Classloader that loads this class.
     * This is required to prevent concurrent access to the Maven Ant Tasks, which hold static state.
     */
    public class StaticLockingMavenPublisher implements MavenPublisher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/ToolingImplementationLoader.java

    import org.gradle.tooling.internal.consumer.Distribution;
    import org.gradle.tooling.internal.consumer.connection.ConsumerConnection;
    import org.gradle.tooling.internal.protocol.InternalBuildProgressListener;
    
    /**
     * Loads the Tooling API implementation classes from the given Gradle distribution and adapts them to the current Tooling API interfaces.
     */
    public interface ToolingImplementationLoader {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * Verifies that Gradle doesn't pollute the system class loader.
     *
     * This is important for plugins that need to use isolated class loaders to avoid conflicts.
     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/IGradlePropertiesLoader.java

    public interface IGradlePropertiesLoader {
    
        String SYSTEM_PROJECT_PROPERTIES_PREFIX = "org.gradle.project.";
    
        String ENV_PROJECT_PROPERTIES_PREFIX = "ORG_GRADLE_PROJECT_";
    
        /**
         * Loads the set of Gradle properties.
         *
         * @since 6.2
         */
        MutableGradleProperties loadGradleProperties(File rootDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 16:05:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/joinconfiguration.go

    		err    error
    	)
    	if cfgPath != "" {
    		// Loads configuration from config file, if provided
    		config, err = LoadJoinConfigurationFromFile(cfgPath, opts)
    	} else {
    		config, err = DefaultedJoinConfiguration(defaultversionedcfg, opts)
    	}
    	if err == nil {
    		prepareStaticVariables(config)
    	}
    	return config, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/runtime/tls_ppc64x.s

    #ifndef GOOS_aix
    #ifndef GOOS_openbsd
    	MOVBZ	runtime·iscgo(SB), R31
    	CMP	R31, $0
    	BEQ	nocgo
    #endif
    #endif
    	MOVD	runtime·tls_g(SB), R31
    	MOVD	g, 0(R31)
    
    nocgo:
    	RET
    
    // load_g loads the g register from pthread-provided
    // thread-local memory, for use after calling externally compiled
    // ppc64 code that overwrote those registers.
    //
    // This is never called directly from C code (it doesn't have to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/ClassPath.java

        this.resources = resources;
      }
    
      /**
       * Returns a {@code ClassPath} representing all classes and resources loadable from {@code
       * classloader} and its ancestor class loaders.
       *
       * <p><b>Warning:</b> {@code ClassPath} can find classes and resources only from:
       *
       * <ul>
       *   <li>{@link URLClassLoader} instances' {@code file:} URLs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  10. src/runtime/stubs_loong64.go

    //go:build loong64
    
    package runtime
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:23 UTC 2023
    - 638 bytes
    - Viewed (0)
Back to top