Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 960 for resort (0.25 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            DEPRECATED_FEATURE_HANDLER.init(warningMode, buildOperationProgressEventEmitter, problemsService, problemStream);
        }
    
        public synchronized static void reset() {
            DEPRECATED_FEATURE_HANDLER.reset();
        }
    
        public synchronized static void reportSuppressedDeprecations() {
            DEPRECATED_FEATURE_HANDLER.reportSuppressedDeprecations();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * method or directly by an action (or closure) passed into {@link #pom(org.gradle.api.Action)}.
     * As a last resort, it is possible to modify the generated POM using the {@link MavenPom#withXml(org.gradle.api.Action)} method.
     * </p>
     * <h4>Example of publishing a Java module with a source artifact and a customized POM</h4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

         * <p>
         * Use sparingly. In most cases, it is better to rework the call chain to avoid re-evaluating the owner.
         *
         * @param evaluation the evaluation
         * @param <R> the type of the result
         * @param <E> (optional) exception type being thrown by the evaluation
         * @return the result of the evaluation
         * @throws E exception from the {@code evaluation} is propagated
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.h

        // XlaOpKernel is a no-op kernel).  We avoid auto-clustering these ops so
        // that the user is not surprised when XLA is implicitly enabled. If the
        // user explicitly specifies to use XLA, it is fine to resort to a dummy
        // implementation. Currently Assert and CheckNumerics ops have dummy XLA
        // implementations.
        bool allow_eliding_assert_and_checknumerics_ops = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	}
    	return mappings, nil
    }
    
    // MaybeResetRESTMapper calls Reset() on the mapper if it is a ResettableRESTMapper.
    func MaybeResetRESTMapper(mapper RESTMapper) {
    	m, ok := mapper.(ResettableRESTMapper)
    	if ok {
    		m.Reset()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    		d.buf = d.saveBuf.Bytes()
    		d.saveBuf.Reset()
    	}
    
    	for len(d.buf) > 0 {
    		err = d.parseHeaderFieldRepr()
    		if err == errNeedMore {
    			// Extra paranoia, making sure saveBuf won't
    			// get too large. All the varint and string
    			// reading code earlier should already catch
    			// overlong things and return ErrStringLength,
    			// but keep this as a last resort.
    			const varIntOverhead = 8 // conservative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                    case COMBINATION_ITEM:
                        int result = this.compareTo(((CombinationItem) item).getStringPart());
                        if (result == 0) {
                            return -1;
                        }
                        return result;
    
                    case LIST_ITEM:
                        return -1; // 1.any < 1-1
    
                    default:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    ----
    
    The log shows e.g. which source files constitute the `stableSources` for the `compileJava` task.
    To find the actual differences between two builds you need to resort to matching up and comparing those hashes yourself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top