Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 619 for toGetter (0.12 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

        /**
         * This is a temporary measure for Gradle tasks to track a legacy measurement of all input snapshotting together.
         */
        default void markLegacySnapshottingInputsStarted() {}
    
        /**
         * This is a temporary measure for Gradle tasks to track a legacy measurement of all input snapshotting together.
         */
        default void markLegacySnapshottingInputsFinished(CachingState cachingState) {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategy.java

                // If any of the child strategies don't expire the daemon, the daemon will not expire.
                // Otherwise, the daemon will expire and aggregate the reasons together.
                expirationResult = expirationStrategy.checkExpiration();
    
                if (expirationResult.getStatus() == DO_NOT_EXPIRE) {
                    return DaemonExpirationResult.NOT_TRIGGERED;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayNodeOrigin.kt

        /**
         * The node is an element that is a combination of [underlayElement] and [overlayElement] with
         * their [DeclarativeDocument.DocumentNode.ElementNode.content]s merged together.
         */
        data class MergedElements(
            val underlayElement: DeclarativeDocument.DocumentNode.ElementNode,
            val overlayElement: DeclarativeDocument.DocumentNode.ElementNode
        ) : OverlayElementOrigin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClientServices.java

    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.context.DaemonRequestContext;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    /**
     * Takes care of instantiating and wiring together the services required by the single-use daemon client.
     */
    public class SingleUseDaemonClientServices extends DaemonClientServicesSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. security/tools/jwt/samples/README.md

    # Sample JWT and JWKS data for demo
    
    This folder contains sample data to setup end-user authentication with Istio authentication policy, together with the script to (re)generate them.
    
    ## Example end-user authentication policy using the mock jwks.json data
    
    ```yaml
    apiVersion: security.istio.io/v1
    kind: RequestAuthentication
    metadata:
      name: "jwt-example"
    spec:
      selector:
        matchLabels:
          app: httpbin
      jwtRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 24 15:56:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    - `jackson-annotation` version `2.9.0` (dependency of `jackson-databind:2.9.5`)
    
    It's easy to end up with a set of versions which do not work well together.
    To fix this, Gradle supports dependency version alignment, which is supported by the concept of platforms.
    A platform represents a set of modules which "work well together".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.h

    ==============================================================================*/
    
    // An optimization passes that marks nodes that are to be compiled with
    // attribute kXlaClusterAttr. Nodes with the same cluster ID will be compiled
    // together.
    
    #ifndef TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_H_
    #define TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_H_
    
    #include "absl/container/flat_hash_set.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/request-forms-and-files.md

        This is not a limitation of **FastAPI**, it's part of the HTTP protocol.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. hack/make-rules/update.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    ALL=${FORCE_ALL:-false}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/ScheduledWork.java

    import java.util.Collection;
    import java.util.List;
    import java.util.Set;
    import java.util.function.BiConsumer;
    
    /**
     * An immutable snapshot of the currently scheduled nodes, together with the information about which nodes are entry points.
     */
    public class ScheduledWork implements QueryableExecutionPlan.ScheduledNodes {
        private final ImmutableList<Node> scheduledNodes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top