Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for remSign (0.2 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

    /**
     * [KaFirNamedClassOrObjectSymbolBase] provides shared equality and hash code implementations for FIR-based named class or object symbols so
     * that symbols of different kinds can be compared and remain interchangeable.
     */
    internal sealed class KaFirNamedClassOrObjectSymbolBase : KaNamedClassOrObjectSymbol(), KaFirSymbol<FirRegularClassSymbol> {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_issue56494.txt

    # and a2 (but not a3) would add a dependency on c2.
    # Since a2 is lower than a3 it cannot possibly be selected when
    # upgrading to a3: normally a2 is pruned out of a3's module graph,
    # so 'go get' should prune it out too, and c should remain at c1
    # without error.
    
    go get a@v0.3.0
    
    go list -m c
    stdout '^c v0.1.0 '
    
    -- go.mod --
    module m
    
    go 1.19
    
    require (
    	a v0.1.0
    	b v0.1.0
    	c v0.1.0
    )
    
    replace (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/AbstractSequentialIterator.java

      protected AbstractSequentialIterator(@CheckForNull T firstOrNull) {
        this.nextOrNull = firstOrNull;
      }
    
      /**
       * Returns the element that follows {@code previous}, or returns {@code null} if no elements
       * remain. This method is invoked during each call to {@link #next()} in order to compute the
       * result of a <i>future</i> call to {@code next()}.
       */
      @CheckForNull
      protected abstract T computeNext(T previous);
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ConfigurationReportModel.java

      *
      * The intended use is that this data model can be populated with the complete information of a project prior to any
      * report logic running.  This enables the reporting logic to remain completely independent of the actual project classes.
     */
    public final class ConfigurationReportModel {
        private final String projectName;
        private final List<ReportConfiguration> allConfigs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:38:11 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

            return Gson().fromJson(jsonString, AcceptedApiChanges::class.java)
        }
    
        /**
         * Sorts the given list of [AcceptedApiChange]s by type and member.
         * <p>
         * This sort ought to remain consistent with the sort used by the [EnrichedReportRenderer].
         */
        @Suppress("KDocUnresolvedReference")
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

         */
        Map<String, String> getTargetAttributes();
    
        /**
         * Capabilities of the variant of the transformed artifact.
         * <p>
         * Artifact transforms can only change attributes, so the capabilities remain unchanged throughout the transform chain.
         */
        List<? extends Capability> getCapabilities();
    
        /**
         * Name of the source artifact being transformed.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

     *
     * @implNote This class should not be subclassed beyond the existing
     * {@link ConfigurationSelectionException}, {@link ArtifactVariantSelectionException}, and
     * {@link VariantSelectionException} subtypes.  All subtypes should remain immutable.
     */
    @Contextual
    public abstract class AbstractResolutionFailureException extends StyledException implements ResolutionProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettings.java

        public static final int DEFAULT_CONNECTION_TIMEOUT = 30000;
        public static final int DEFAULT_SOCKET_TIMEOUT = 30000;
        /**
         * The default time in milliseconds for an idle connection to remain open.
         * <a href="https://azure.microsoft.com/en-us/blog/new-configurable-idle-timeout-for-azure-load-balancer/">Microsoft Azure closes idle connections after 4 min</a>,
         * so we set our default to be below that.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ArStaticLibraryArchiver.java

            return super.execute(spec);
        }
    
        private void deletePreviousOutput(StaticLibraryArchiverSpec spec) {
            // Need to delete the previous archive, otherwise stale object files will remain
            if (!spec.getOutputFile().isFile()) {
                return;
            }
            if (!spec.getOutputFile().delete()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/case_format.cc

        wordStart = false;
        // .. or the input:
        inputStart = false;
      }
    
      if (wordStart) {
        // This only happens with a trailing delimiter, which should remain.
        result.push_back(delimiter);
      }
    
      return result;
    }
    
    }  // namespace
    
    //
    // Public interface
    //
    
    string toLowerCamel(const string &s, const char delimiter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top