Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,631 for yield (0.18 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    hasItem(org.hamcrest.Matcher<? super T> itemMatcher) { return org.hamcrest.core.IsCollectionContaini.<T>hasItem(itemMatcher); } /** * Creates a matcher for {@link Iterable}s that matches when consecutive passes over the * examined {@link Iterable} yield at least one item that is equal to the corresponding * item from the specified <code>items</code>. Whilst matching, each traversal of the * examined {@link Iterable} will stop as soon as a matching item is found. * <p/> * For example: * <pre>asser...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    Note that Zinc's Nailgun based daemon mode is not supported. Instead, we plan to enhance Gradle's own compiler daemon to stay alive across Gradle invocations, reusing the same Scala compiler. This is expected to yield another significant speedup for Scala compilation.
    
    [[sec:eclipse_integration]]
    == Eclipse Integration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Predicates.java

       * {@link Predicate#apply}), the returned predicate may not be <i>consistent with equals</i>. For
       * example, {@code instanceOf(ArrayList.class)} will yield different results for the two equal
       * instances {@code Lists.newArrayList(1)} and {@code Arrays.asList(1)}.
       */
      @GwtIncompatible // Class.isInstance
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Predicates.java

       * {@link Predicate#apply}), the returned predicate may not be <i>consistent with equals</i>. For
       * example, {@code instanceOf(ArrayList.class)} will yield different results for the two equal
       * instances {@code Lists.newArrayList(1)} and {@code Arrays.asList(1)}.
       */
      @GwtIncompatible // Class.isInstance
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
        %2 = "tf.FakeQuantWithMinMaxVars"(%arg1, %arg2, %arg3) {num_bits = 3, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
        "tfl.yield"(%2) : (tensor<8xf32>) -> ()
      }) {num_bits = 3, narrow_range = false} :  (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/image/gif/reader.go

    		if err != io.ErrUnexpectedEOF {
    			return fmt.Errorf("gif: reading image data: %v", err)
    		}
    		return errNotEnough
    	}
    	// In theory, both lzwr and br should be exhausted. Reading from them
    	// should yield (0, io.EOF).
    	//
    	// The spec (Appendix F - Compression), says that "An End of
    	// Information code... must be the last code output by the encoder
    	// for an image". In practice, though, giflib (a widely used C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/encoding/asn1/asn1_test.go

    }
    
    func TestNull(t *testing.T) {
    	marshaled, err := Marshal(NullRawValue)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(NullBytes, marshaled) {
    		t.Errorf("Expected Marshal of NullRawValue to yield %x, got %x", NullBytes, marshaled)
    	}
    
    	unmarshaled := RawValue{}
    	if _, err := Unmarshal(NullBytes, &unmarshaled); err != nil {
    		t.Fatal(err)
    	}
    
    	unmarshaled.FullBytes = NullRawValue.FullBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Splitter.java

       * will <i>stop splitting when the limit is reached</i>, and just return the final piece as-is.
       *
       * <p><b>Exception:</b> for consistency with separator-based splitters, {@code split("")} does not
       * yield an empty iterable, but an iterable containing {@code ""}. This is the only case in which
       * {@code Iterables.size(split(input))} does not equal {@code IntMath.divide(input.length(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. src/encoding/base32/base32.go

    				// the five valid padding lengths, and Section 9 "Illustrations and
    				// Examples" for an illustration for how the 1st, 3rd and 6th base32
    				// src bytes do not yield enough information to decode a dst byte.
    				if dlen == 1 || dlen == 3 || dlen == 6 {
    					return n, false, CorruptInputError(olen - len(src) - 1)
    				}
    				break
    			}
    			dbuf[j] = enc.decodeMap[in]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == System file encoding
    
    Most Java tools use the system file encoding when no specific encoding is specified.
    This means that running the same build on machines with different file encoding can yield different outputs.
    Currently Gradle only tracks on a per-task basis that no file encoding has been specified, but it does not track the system encoding of the JVM in use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top