Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,091 for GETs (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the POM file of the project to build.
         *
         * @return The POM file of the project or {@code null} if not applicable (i.e. when processing a POM from the
         *         repository).
         * @deprecated Use {@link #getPomPath()} instead.
         */
        @Deprecated
        File getPomFile();
    
        /**
         * Gets the POM file of the project to build.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

    public interface KaSymbolInfoProviderMixIn : KaSessionMixIn {
        /**
         * Gets the deprecation status of the given symbol. Returns null if the symbol is not deprecated.
         */
        public val KaSymbol.deprecationStatus: DeprecationInfo?
            get() = withValidityAssertion {
                analysisSession.symbolInfoProvider.getDeprecation(this)
            }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

    import org.eclipse.aether.graph.DependencyFilter;
    
    /**
     * A request to resolve the dependencies of a project.
     *
     */
    public interface DependencyResolutionRequest {
    
        /**
         * Gets the project to resolve dependencies for.
         *
         * @return The project to resolve dependencies for or {@code null} if not set.
         */
        MavenProject getMavenProject();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/integTest/groovy/org/gradle/process/internal/health/memory/DefaultOsMemoryInfoIntegrationTest.groovy

    @UsesNativeServices
    class DefaultOsMemoryInfoIntegrationTest extends Specification {
    
        def "gets OS total memory on any system"() {
            when:
            new DefaultOsMemoryInfo().getOsSnapshot().getPhysicalMemory().getTotal()
    
            then:
            notThrown UnsupportedOperationException
        }
    
        def "gets OS free memory on any system"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/metrics/interfaces.go

    	// GetRawMetric gets the given metric (and an associated oldest timestamp)
    	// for all pods matching the specified selector in the given namespace
    	GetRawMetric(metricName string, namespace string, selector labels.Selector, metricSelector labels.Selector) (PodMetricsInfo, time.Time, error)
    
    	// GetObjectMetric gets the given metric (and an associated timestamp) for the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperBadArchiveTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        TestFile badArchive = file("bad-archive.zip") << BAD_ARCHIVE_CONTENT
    
        def "wrapper gets bad archive on 1 attempt"() {
            given:
            server.expect(server.head(GRADLE_BIN_ZIP))
            server.expect(server.get(GRADLE_BIN_ZIP).sendFile(badArchive))
            server.expect(server.get(GRADLE_BIN_HASH).missing())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

         * @return provider of the execution result.
         */
        Provider<ExecResult> getResult();
    
        /**
         * Gets a handle to the content of the process' standard output.
         *
         * @return handle of the standard output of the process.
         */
        StandardStreamContent getStandardOutput();
    
        /**
         * Gets a handle to the content of the process' standard error output.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/cluster.go

    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    		kubeconfigFile := filepath.Join(kubeconfigDir, constants.KubeletKubeConfigFileName)
    		if err := GetNodeRegistration(kubeconfigFile, client, &initcfg.NodeRegistration); err != nil {
    			return nil, errors.Wrap(err, "failed to get node registration")
    		}
    		// gets the APIEndpoint for the current node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_util.h

    // `device_type` in either the XlaLaunch op or the XlaCompileOnDemand op.
    bool UsePjRtForSingleDeviceCompilation(const DeviceType& device_type);
    
    // Gets the resource name of the PjRt DeviceCompiler for `device_type`.
    std::string GetPjRtDeviceCompilerResourceName(const DeviceType& device_type);
    
    // Gets the resource name of the DeviceCompilationProfiler for `device_type`
    // when PjRt is used for compilation and execution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/runtime/rt0_js_wasm.s

    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_resume gets called from JavaScript. It resumes the execution of Go code until it needs to wait for
    // an event.
    TEXT wasm_export_resume(SB),NOSPLIT,$0
    	I32Const $0
    	Call runtime·handleEvent(SB)
    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_getsp gets called from JavaScript to retrieve the SP.
    TEXT wasm_export_getsp(SB),NOSPLIT,$0
    	Get SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:28:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top