Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,281 for paid (0.07 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

                assertNotClosed();
                IndexedCache<?, ?> indexedCache = caches.get(Pair.of(cacheDir, name));
                if (indexedCache == null) {
                    indexedCache = new TestInMemoryIndexedCache<K, V>(valueSerializer);
                    caches.put(Pair.of(cacheDir, name), indexedCache);
                }
                return Cast.uncheckedCast(indexedCache);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/util/workloadinstances/map.go

    // multiple values.
    type MultiValueMap map[string]sets.String
    
    // Insert adds given (key, value) pair into the map.
    func (m MultiValueMap) Insert(key, value string) MultiValueMap {
    	sets.InsertOrNew(m, key, value)
    	return m
    }
    
    // Delete removes given (key, value) pair out of the map.
    func (m MultiValueMap) Delete(key, value string) MultiValueMap {
    	sets.DeleteCleanupLast(m, key, value)
    	return m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 02:49:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClassTransform.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.api.file.RelativePath;
    import org.gradle.internal.Pair;
    import org.gradle.internal.classpath.ClassData;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.hash.Hasher;
    import org.objectweb.asm.ClassVisitor;
    
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 07:56:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

        @Override
        protected String getActionRole() {
            return ROLE;
        }
    
        private List<Pair<String, String>> loadJspFileNameItems() {
            final List<Pair<String, String>> jspItems = new ArrayList<>();
            for (final Pair<String, String> p : systemHelper.getDesignJspFileNames()) {
                jspItems.add(new Pair<>(":" + p.getFirst(), "/" + p.getSecond()));
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/composite/CompositeBuildContext.java

    import org.gradle.api.internal.artifacts.ivyservice.dependencysubstitution.DependencySubstitutionRules;
    import org.gradle.internal.Pair;
    
    import java.util.Set;
    
    public interface CompositeBuildContext extends DependencySubstitutionRules {
        void addAvailableModules(Set<Pair<ModuleVersionIdentifier, ProjectComponentIdentifier>> availableModules);
        void registerSubstitution(Action<DependencySubstitution> substitutions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/EndpointPair.java

    import com.google.errorprone.annotations.Immutable;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable pair representing the two endpoints of an edge in a graph. The {@link EndpointPair}
     * of a directed edge is an ordered pair of nodes ({@link #source()} and {@link #target()}). The
     * {@link EndpointPair} of an undirected edge is an unordered pair of nodes ({@link #nodeU()} and
     * {@link #nodeV()}).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/CompositeBuildParticipantBuildState.java

     */
    
    package org.gradle.internal.build;
    
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    import org.gradle.internal.Pair;
    import org.gradle.internal.composite.IncludedBuildInternal;
    
    import java.util.Set;
    
    public interface CompositeBuildParticipantBuildState extends BuildState {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 28 05:18:49 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/numerical_utils.h

    #include <cstdint>
    #include <optional>
    #include <utility>
    
    #include "absl/types/optional.h"
    
    namespace mlir {
    namespace quant {
    
    using QuantizedMultiplier = std::pair<int32_t, int32_t>;
    using QuantizedRange = std::pair<int32_t, int32_t>;
    
    // Decompose double precision multiplier to integer multiplier and exponent.
    //    double_multiplier = int_multiplier * 2 ^ (-31 + exponent)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimap.java

       * always adds a new key-value pair and increases the multimap size by 1. Other implementations
       * prohibit duplicates, and storing a key-value pair that's already in the multimap has no effect.
       *
       * @return {@code true} if the method increased the size of the multimap, or {@code false} if the
       *     multimap already contained the key-value pair and doesn't allow duplicates
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/PairedStatsAccumulator.java

      /**
       * Returns the population covariance of the values. The count must be non-zero.
       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top