Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,177 for returnedAt (1.06 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

                public class $pluginName implements Plugin<Project> {
                    @Override
                    public void apply(Project project) {
                        String returned = System.getProperty("$propertyName");
                        System.out.println("returned = " + returned);
                    }
                }
            """
            file("$folder/build.gradle") << """
                plugins {
                    id("java-gradle-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RangeMap.java

       * this range map are guaranteed to read through to the returned {@code Map}.
       *
       * <p>The returned {@code Map} iterates over entries in ascending order of the bounds of the
       * {@code Range} entries.
       *
       * <p>It is guaranteed that no empty ranges will be in the returned {@code Map}.
       */
      Map<Range<K>, V> asMapOfRanges();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SortedMultiset.java

       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
       * <p>The returned multiset will throw an {@link IllegalArgumentException} on attempts to add
       * elements outside its range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/SortedMultiset.java

       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
       * <p>The returned multiset will throw an {@link IllegalArgumentException} on attempts to add
       * elements outside its range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue14725.go

    	return
    }
    
    func main() {
    	if x := f1(); x != 1 {
    		panic(fmt.Sprintf("f1 returned %d, wanted 1", x))
    	}
    	if x := f2(); x != 1 {
    		panic(fmt.Sprintf("f2 returned %d, wanted 1", x))
    	}
    	if x := f3(true); x != 1 {
    		panic(fmt.Sprintf("f3(true) returned %d, wanted 1", x))
    	}
    	if x := f3(false); x != 1 {
    		panic(fmt.Sprintf("f3(false) returned %d, wanted 1", x))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 856 bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetEntrySetTester.java

        assertTrue(
            "non-empty multiset.entrySet() iterator.hasNext() returned false", iterator.hasNext());
        assertEquals(
            "multiset.entrySet() iterator.next() returned incorrect entry",
            Multisets.immutableEntry(e0(), 1),
            iterator.next());
        assertFalse(
            "size 1 multiset.entrySet() iterator.hasNext() returned true after next()",
            iterator.hasNext());
        iterator.remove();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 9.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

      /** @since 15.0 (previously returned ScheduledFuture) */
      @Override
      ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit);
    
      /** @since 15.0 (previously returned ScheduledFuture) */
      @Override
      <V extends @Nullable Object> ListenableScheduledFuture<V> schedule(
          Callable<V> callable, long delay, TimeUnit unit);
    
      /** @since 15.0 (previously returned ScheduledFuture) */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/BuildResult.java

         * If executing a parallel enabled build, the order is not guaranteed to be deterministic.
         * <p>
         * The returned list is an unmodifiable view of items.
         * The returned list will be empty if no tasks were executed.
         * This can occur if the build fails early, due to a build script failing to compile for example.
         *
         * @return the build tasks
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/crypto/tls/cache.go

    }
    
    // newCert returns a x509.Certificate parsed from der. If there is already a copy
    // of the certificate in the cache, a reference to the existing certificate will
    // be returned. Otherwise, a fresh certificate will be added to the cache, and
    // the reference returned. The returned reference should not be mutated.
    func (cc *certCache) newCert(der []byte) (*activeCert, error) {
    	if entry, ok := cc.Load(string(der)); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

         * An exclusive lock is held while the update action is executing.
         * The result of the update is returned.
         */
        T update(UpdateAction<T> updateAction);
    
        interface UpdateAction<T> {
            T update(T oldValue);
        }
    
        /**
         * Potentially replaces the value for this cache
         *
         * The value returned by the update action will only be written to the cache
         * if it is not equal to the current value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top