Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,281 for paid (0.05 sec)

  1. 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.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/MoreObjects.java

          omitNullValues = true;
          return this;
        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format. If {@code value}
         * is {@code null}, the string {@code "null"} is used, unless {@link #omitNullValues()} is
         * called, in which case this name/value pair will not be added.
         */
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

        }
    
        @Test
        fun `maps Groovy named arguments to Kotlin vararg of Pair`() {
    
            apiKotlinExtensionsGenerationFor(GroovyNamedArguments::class, Consumer::class) {
    
                assertGeneratedExtensions(
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.GroovyNamedArguments.`rawMap`(vararg `args`: Pair<String, Any?>): Unit =
                        `rawMap`(mapOf(*`args`))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/ProjectPropertySettingBuildLoader.java

            }
    
            @Nullable
            private PropertyMutator propertyMutatorFor(String propertyName, @Nullable Class<?> valueType) {
                final Pair<String, ? extends Class<?>> key = Pair.of(propertyName, valueType);
                final PropertyMutator cached = mutators.get(key);
                if (cached != null) {
                    return cached;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/escape/testing/EscaperAsserts.java

      }
    
      /**
       * Asserts that a Unicode escaper escapes the given hi/lo surrogate pair into the expected string.
       *
       * @param escaper the non-null escaper to test
       * @param expected the expected output string
       * @param hi the high surrogate pair character
       * @param lo the low surrogate pair character
       */
      public static void assertUnicodeEscaping(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/escape/testing/EscaperAsserts.java

      }
    
      /**
       * Asserts that a Unicode escaper escapes the given hi/lo surrogate pair into the expected string.
       *
       * @param escaper the non-null escaper to test
       * @param expected the expected output string
       * @param hi the high surrogate pair character
       * @param lo the low surrogate pair character
       */
      public static void assertUnicodeEscaping(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      for (const auto& pair : clusters) {
        if (pair.first == kNoCluster) {
          absl::StrAppend(&result, "unclustered");
        } else {
          absl::StrAppend(&result, "cluster ", pair.first);
        }
    
        absl::StrAppend(&result, " size ", cluster_size[pair.first], "\n");
    
        for (const auto& ops_and_counts : pair.second) {
          absl::StrAppend(&result, " ", ops_and_counts.first, " ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    		meta:      meta,
    	}
    
    	// ignore conversions of this type
    	if _, ok := c.ignoredUntypedConversions[pair]; ok {
    		return nil
    	}
    	if fn, ok := c.conversionFuncs.untyped[pair]; ok {
    		return fn(src, dest, scope)
    	}
    	if fn, ok := c.generatedConversionFuncs.untyped[pair]; ok {
    		return fn(src, dest, scope)
    	}
    
    	dv, err := EnforcePtr(dest)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

        if (!key_value || key_value.getValue().size() != 2 ||
            !mlir::isa<mlir::StringAttr>(key_value.getValue()[0]))
          return op.emitOpError() << "each op_attr should be a key-value pair, "
                                     "where the key is a string";
      }
      return mlir::success();
    }
    
    template <typename OpTy>
    mlir::LogicalResult VerifyFallbackExecuteOp(OpTy op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top