Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 640 for IsSame (0.59 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    So configuration cache instrumentation and API upgrades are using the same infrastructure now, called bytecode interception infrastructure.
    
    
    ## Functional design
    
    Let's look at how bytecode interception works on an example of upgrading a JavaBean property to a lazy one.
    Configuration cache instrumentation works in the same way.
    
    Imagine we have in Gradle core a task:
    ```java
    abstract class JavaCompile {
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    It is possible for different repositories to provide a different binary artifact in response to the same artifact identifier.
    This is often the case with Maven SNAPSHOT artifacts, but can also be true for any artifact which is republished without changing its identifier.
    By caching artifacts based on their SHA1 checksum, Gradle is able to maintain multiple versions of the same artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    	// but fall back to _.
    	prefix := strings.TrimRight(url, "/")
    	if i := strings.LastIndex(prefix, "/"); i >= 0 {
    		prefix = prefix[i+1:]
    	}
    	if prefix == "" || !isName([]byte(prefix)) || strings.Contains(prefix, ":") {
    		prefix = "_"
    	}
    	// xmlanything is reserved and any variant of it regardless of
    	// case should be matched, so:
    	//    (('X'|'x') ('M'|'m') ('L'|'l'))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload_test.go

    		// Create pod we are not subscribed to; due to same-node optimization this will push
    		createPod(s, "pod-same-node", "sa", "127.0.0.3", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod-same-node")
    
    		deletePod(s, "pod-same-node")
    		expectRemoved(ads.ExpectResponse(), "Kubernetes//Pod/default/pod-same-node")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/runtime/pinner.go

    	lock(&span.speciallock) // guard against concurrent calls of setPinned on same span
    
    	pinnerBits := span.getPinnerBits()
    	if pinnerBits == nil {
    		pinnerBits = span.newPinnerBits()
    		span.setPinnerBits(pinnerBits)
    	}
    	pinState := pinnerBits.ofObject(objIndex)
    	if pin {
    		if pinState.isPinned() {
    			// multiple pins on same object, set multipin bit
    			pinState.setMultiPinned(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * <p><b>Note:</b> consider representing the collection as a {@link java.util.BitSet} instead.
       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Booleans.java

       *
       * <p><b>Note:</b> consider representing the collection as a {@link java.util.BitSet} instead.
       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // ReluGrad(gradients, features) = gradients * (features > 0)
    // The condition that $gradients and $features need to have the same shape is
    // implicitly enforced: $zero is created to have the same shape as $features,
    // MHLO_SelectOp enforces that $gradients and $zero have the same shape.
    def : Pat<(TF_ReluGradOp AnyTensor:$gradients, AnyTensor:$features),
              (MHLO_SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> skip(int numberToSkip) {
        return from(Iterables.skip(getDelegate(), numberToSkip));
      }
    
      /**
       * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this
       * fluent iterable does not contain that many elements, the returned fluent iterable will have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> skip(int numberToSkip) {
        return from(Iterables.skip(getDelegate(), numberToSkip));
      }
    
      /**
       * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this
       * fluent iterable does not contain that many elements, the returned fluent iterable will have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top