Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,358 for sinhe2 (0.09 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *
     * @since 3.5
     */
    @ServiceScope(Scope.Project.class)
    public interface WorkerExecutor {
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with no isolation.
         *
         * @since 5.6
         */
        WorkQueue noIsolation();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         *
         * @since 3.1
         */
        TaskInputFilePropertyBuilder withPathSensitivity(PathSensitivity sensitivity);
    
        /**
         * Sets the normalizer to use for this property.
         *
         * @since 4.3
         */
        TaskInputFilePropertyBuilder withNormalizer(Class<? extends FileNormalizer> normalizer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

        return delegate.state();
      }
    
      /** @since 13.0 */
      @Override
      public final void addListener(Listener listener, Executor executor) {
        delegate.addListener(listener, executor);
      }
    
      /** @since 14.0 */
      @Override
      public final Throwable failureCause() {
        return delegate.failureCause();
      }
    
      /** @since 15.0 */
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

         *
         * @return associated gradle project
         * @since 1.0-milestone-5
         */
        @Override
        GradleProject getGradleProject();
    
        /**
         * Returns the external dependencies which make up the classpath of this project.
         *
         * @return The dependencies. Returns an empty set if the project has no external dependencies.
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
      - testing-01.com # Expected: no validation error since this host exists
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ticker.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class Ticker {
      /** Constructor for use by subclasses. */
      protected Ticker() {}
    
      /** Returns the number of nanoseconds elapsed since this ticker's fixed point of reference. */
      public abstract long read();
    
      /**
       * A ticker that reads the current time using {@link System#nanoTime}.
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentSelector.java

     * expose specific details about the criteria.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentSelector {
        /**
         * Returns a human-consumable display name for this selector.
         *
         * @return Display name
         * @since 1.10
         */
        String getDisplayName();
    
        /**
         * Checks if selector matches component identifier.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. cmd/metrics-v3-replication.go

    		"Maximum number of active replication workers seen since server start")
    	replicationMaxQueuedBytesMD = NewGaugeMD(replicationMaxQueuedBytes,
    		"Maximum number of bytes queued for replication since server start")
    	replicationMaxQueuedCountMD = NewGaugeMD(replicationMaxQueuedCount,
    		"Maximum number of objects queued for replication since server start")
    	replicationMaxDataTransferRateMD = NewGaugeMD(replicationMaxDataTransferRate,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseModel.java

         * synchronization starts.
         *
         * @return the tasks names
         * @since 5.4
         */
        public TaskDependency getSynchronizationTasks() {
            return synchronizationTasks;
        }
    
        /**
         * Set tasks to be executed before the Eclipse synchronization.
         *
         * @see #getSynchronizationTasks()
         * @since 5.4
         */
        public void synchronizationTasks(Object... synchronizationTasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

         * org.gradle.api.artifacts.ResolutionStrategy#getDependencySubstitution()}
         *
         * @since 1.4
         */
        boolean isSelectedByRule();
    
        /**
         * Informs whether the component is the requested selection of all dependency declarations, and was not replaced for some reason, such as conflict resolution.
         *
         * @since 1.11
         */
        boolean isExpected();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top