Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,444 for sinhe4 (0.1 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

     *
     * @since 8.8
     * @see ProblemId
     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/ToolingApiVersionSpecification.groovy

        }
    
        def getOutput() {
            outputStream.toString()
        }
    
        // since 1.0
        def build() {
            withConnection { ProjectConnection connection ->
                def build = connection.newBuild()
                build.standardOutput = outputStream
                build.run()
            }
        }
    
        // since 1.0
        def getModel() {
            withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaInstallationMetadata.java

         *
         * @return the full Java version of the JVM
         * @since 7.1
         */
        @Internal
        String getJavaRuntimeVersion();
    
        /**
         * Returns the version of the JVM, as specified in its {@code java.vm.version} property.
         *
         * @return the version of the JVM
         * @since 7.1
         */
        @Internal
        String getJvmVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationType.java

         * </ul>
         *
         * @since 7.6
         */
        @Incubating
        BUILD_PHASE,
    
        /**
         * Flag for problem events.
         *
         * <p>
         * The following events are currently issued for this operation type.
         * <ul>
         *     <li>{@link ProblemEvent}</li>
         * </ul>
         *
         * @since 8.4
         */
        @Incubating
        PROBLEMS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/Parameter.java

      }
    
      /**
       * @since 18.0
       */
      @Override
      public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType) {
        return getDeclaredAnnotationsByType(annotationType);
      }
    
      /** @since 18.0 */
      @Override
      public Annotation[] getDeclaredAnnotations() {
        return annotations.toArray(new Annotation[0]);
      }
    
      /**
       * @since 18.0
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingList.java

       *
       * @since 7.0
       */
      protected Iterator<E> standardIterator() {
        return listIterator();
      }
    
      /**
       * A sensible default implementation of {@link #listIterator()}, in terms of {@link
       * #listIterator(int)}. If you override {@link #listIterator(int)}, you may wish to override
       * {@link #listIterator()} to forward to this implementation.
       *
       * @since 7.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemDefinition.java

    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    
    /**
     * Represents a problem definition.
     *
     * @since 8.9
     */
    @Incubating
    public interface ProblemDefinition {
    
        /**
         * The id of the problem.
         * @return the id.
         *
         * @since 8.9
         */
        ProblemId getId();
    
        /**
         * Problem severity.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/latency_tracker.go

    	defer func() {
    		endpointsrequest.TrackStorageLatency(ctx, time.Since(startedAt))
    	}()
    
    	return c.KV.Put(ctx, key, val, opts...)
    }
    
    func (c *clientV3KVLatencyTracker) Get(ctx context.Context, key string, opts ...clientv3.OpOption) (*clientv3.GetResponse, error) {
    	startedAt := time.Now()
    	defer func() {
    		endpointsrequest.TrackStorageLatency(ctx, time.Since(startedAt))
    	}()
    
    	return c.KV.Get(ctx, key, opts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         * @return the base name. Internal property may be null.
         * @since 5.1
         */
        @Internal("Represented as part of archiveFile")
        public Property<String> getArchiveBaseName() {
            return archiveBaseName;
        }
    
        /**
         * Returns the appendix part of the archive name, if any.
         *
         * @return the appendix. May be null
         * @since 5.1
         */
        @Internal("Represented as part of archiveFile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         * and the build will continue (infinite failures allowed).
         *
         * @since 6.4
         */
        @Input
        public Property<Integer> getMaxFailures() {
            return maxFailures;
        }
    
        /**
         * Specifies the rule priority threshold.
         *
         * @see PmdExtension#getRulesMinimumPriority()
         * @since 6.8
         */
        @Input
        public Property<Integer> getRulesMinimumPriority() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top