Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 310 for Allocate (0.14 sec)

  1. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/TemporaryFileProvider.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    @ServiceScope(Scope.Project.class)
    public interface TemporaryFileProvider {
        /**
         * Allocates a new temporary file with the exact specified path,
         * relative to the temporary file directory. Does not create the file.
         * Provides no guarantees around whether the file already exists.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithApplicationIntegrationTest.groovy

        }
    
        @Override
        protected String[] getTasksToBuildAndRunUnitTest(String architecture) {
            return super.getTasksToBuildAndRunUnitTest(architecture) + tasks.withArchitecture(architecture).test.relocate
        }
    
        @Override
        protected String[] getTasksToCompileComponentUnderTest(String architecture) {
            def debugTasks = tasks.withArchitecture(architecture).debug
            return [debugTasks.compile]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenArtifactRelocationSource.java

        /**
         * Returns {@link Artifact} instance where to relocate to, or {@code null}.
         *
         * @param session The session, never {@code null}.
         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
         * @return The {@link Artifact} to relocate to, or {@code null} if no relocation wanted.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/temp.go

    	}
    	appendWalkStmt(init, ir.NewAssignStmt(base.Pos, tmp, val))
    	return typecheck.Expr(typecheck.NodAddr(tmp)).(*ir.AddrExpr)
    }
    
    // stackTempAddr returns the expression &tmp, where tmp is a newly
    // allocated temporary variable of the given type. Statements to
    // zero-initialize tmp are appended to init.
    func stackTempAddr(init *ir.Nodes, typ *types.Type) *ir.AddrExpr {
    	n := typecheck.TempAt(base.Pos, ir.CurFunc, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/kotlin/settings.gradle.kts

    rootProject.name = "artifact-transforms-relocate"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/groovy/settings.gradle

    rootProject.name = 'artifact-transforms-relocate'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallation.java

        }
    
        @Nullable // if no installation can be located
        public static GradleInstallation get() {
            return locate().getInstallation();
        }
    
        public synchronized static CurrentGradleInstallation locate() {
            if (instance == null) {
                instance = CurrentGradleInstallationLocator.locate();
            }
            return instance;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/attributes/ImmutableAttributes.java

         * have their type information available.
         *
         * As type is part of attribute equality, this method will in many cases <strong>NOT</strong> be useful to
         * locate these attributes within an {@link org.gradle.api.attributes.AttributeContainer} that was created
         * using the strong type information present on attribute constants such as {@link org.gradle.api.attributes.Category#CATEGORY_ATTRIBUTE}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

                return toolSearchPath.locate(compilerType, "swiftc");
            }
            if (compilerType == ToolType.STATIC_LIB_ARCHIVER) {
                return toolSearchPath.locate(compilerType, "ar");
            }
            if (compilerType == ToolType.SYMBOL_EXTRACTOR) {
                return toolSearchPath.locate(compilerType, SymbolExtractorOsConfig.current().getExecutableName());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

        }
    
        /**
         * Locate the grammar file metadata by grammar file path.
         *
         * @param path The grammar file path.
         * @return The grammar file metadata.  May be null if none found.
         */
        public GrammarFileMetadata getGrammarFileByPath(String path) {
            return filesByPath.get(path);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top