Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,176 for efter (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         * It is strongly preferable to only call this after {@link #lock() locking} the scope as it allows the structure to be optimized.
         */
        ClassLoader getLocalClassLoader();
    
        /**
         * The classloader for use by child nodes.
         * <p>
         * Contains exported classes of the parent scope and all local and exported additions to this scope.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/net/http/responsecontroller.go

    		}
    	}
    }
    
    // SetReadDeadline sets the deadline for reading the entire request, including the body.
    // Reads from the request body after the deadline has been exceeded will return an error.
    // A zero value means no deadline.
    //
    // Setting the read deadline after it has been exceeded will not extend it.
    func (c *ResponseController) SetReadDeadline(deadline time.Time) error {
    	rw := c.rw
    	for {
    		switch t := rw.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

        /**
         * Returns the value for the key of the manifest after the merge takes place. By default this is the value
         * of the source for the merge.
         */
        String getValue();
    
        /**
         * Set's the value for the key of the manifest after the merge takes place.
         */
        void setValue(String value);
    
        /**
         * Excludes this key from being in the manifest after the merge.
         */
        void exclude();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pkg/controller/deployment/progress.go

    	// deadline of 10 minutes, it would need to be resynced for a progress check after 7 minutes.
    	//
    	// lastUpdated: 			00:00:00
    	// now: 					00:03:00
    	// progressDeadlineSeconds: 600 (10 minutes)
    	//
    	// lastUpdated + progressDeadlineSeconds - now => 00:00:00 + 00:10:00 - 00:03:00 => 07:00
    	after := currentCond.LastUpdateTime.Time.Add(time.Duration(*d.Spec.ProgressDeadlineSeconds) * time.Second).Sub(nowFn())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

            params {
                text("gitUserEmail", "", label = "Git user.email Configuration", description = "Enter the git 'user.email' configuration to commit change under", display = ParameterDisplay.PROMPT, allowEmpty = true)
                text("confirmationCode", "", label = "Confirmation Code", description = "Enter the value 'startCycle' (no quotes) to confirm the promotion", display = ParameterDisplay.PROMPT, allowEmpty = false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

                          ReportClusteringInfoPass);
    
    // The EncapsulateSubgraphs pass must run after the MarkForCompilationPass. We
    // also need to run it after the graph been rewritten to have _Send nodes added
    // for fetches. Before the _Send nodes are added, fetch nodes are identified by
    // name, and encapsulation might remove that node from the graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsOnBuildStarted(SnapshotHierarchy root, WatchMode watchMode, List<File> unsupportedFileSystems);
    
        /**
         * Updates the VFS and the watchers before the build finishes.
         *
         * For example, this removes everything from the root which can't be kept after the current build finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/BaseExecSpec.java

         * completes.
         *
         * @param inputStream The standard input stream for the process. Must not be null.
         * @return this
         */
        BaseExecSpec setStandardInput(InputStream inputStream);
    
        /**
         * Returns the standard input stream for the process executing the command. The stream is closed after the process
         * completes. Defaults to an empty stream.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/AbstractFunctionalTypeTest.kt

            Runtime.value = "after"
            assertThat(
                force(value),
                equalTo("after")
            )
        }
    
        protected
        fun <T : Any> assertEagerEvaluationOf(eager: T, extract: T.() -> Any?) {
            Runtime.value = "before"
            val value = configurationCacheRoundtripOf(eager)
    
            Runtime.value = "after"
            assertThat(
                extract(value),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. fastapi/background.py

                Doc(
                    """
                    The function to call after the response is sent.
    
                    It can be a regular `def` function or an `async def` function.
                    """
                ),
            ],
            *args: P.args,
            **kwargs: P.kwargs,
        ) -> None:
            """
            Add a function to be called in the background after the response is sent.
    
            Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top