Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 464 for supply (0.32 sec)

  1. android/guava/src/com/google/common/collect/TreeTraverser.java

      /**
       * Returns a tree traverser that uses the given function to navigate from a node to its children.
       * This is useful if the function instance already exists, or so that you can supply a lambda
       * expressions. If those circumstances don't apply, you probably don't need to use this; subclass
       * {@code TreeTraverser} and implement its {@link #children} method directly.
       *
       * @since 20.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       * call cancel() and be unable to cancel the delegate.
       * There are a number of ways to solve this, none of which are very pretty, and it is currently
       * believed to be a purely theoretical problem (since the other actions should supply sufficient
       * write-barriers).
       */
    
      @CheckForNull @LazyInit private ListenableFuture<V> delegateRef;
      @CheckForNull @LazyInit private ScheduledFuture<?> timer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

          FeatureSpecificTestSuiteBuilder<
                  ?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>>
              parentBuilder) {
        // TODO: Once invariant support is added, supply invariants to each of the
        // derived suites, to check that mutations to the derived collections are
        // reflected in the underlying map.
    
        List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       * call cancel() and be unable to cancel the delegate.
       * There are a number of ways to solve this, none of which are very pretty, and it is currently
       * believed to be a purely theoretical problem (since the other actions should supply sufficient
       * write-barriers).
       */
    
      @CheckForNull @LazyInit private ListenableFuture<V> delegateRef;
      @CheckForNull @LazyInit private ScheduledFuture<?> timer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

      protected List<TestSuite> createDerivedSuites(
          FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<M, Entry<K, V>>>
              parentBuilder) {
        // TODO: Once invariant support is added, supply invariants to each of the
        // derived suites, to check that mutations to the derived collections are
        // reflected in the underlying map.
    
        List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/codehost.go

    	c.Cancel = func() error { return c.Process.Signal(os.Interrupt) }
    	c.Dir = dir
    	c.Stdin = stdin
    	c.Stderr = &stderr
    	c.Stdout = &stdout
    	// For Git commands, manually supply GIT_DIR so Git works with safe.bareRepository=explicit set. Noop for other commands.
    	c.Env = append(c.Environ(), "GIT_DIR="+dir)
    	err := c.Run()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

      protected List<TestSuite> createDerivedSuites(
          FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<M, Entry<K, V>>>
              parentBuilder) {
        // TODO: Once invariant support is added, supply invariants to each of the
        // derived suites, to check that mutations to the derived collections are
        // reflected in the underlying map.
    
        List<TestSuite> derivedSuites = super.createDerivedSuites(parentBuilder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Converter.java

      // Static converters
    
      /**
       * Returns a converter based on separate forward and backward functions. This is useful if the
       * function instances already exist, or so that you can supply lambda expressions. If those
       * circumstances don't apply, you probably don't need to use this; subclass {@code Converter} and
       * implement its {@link #doForward} and {@link #doBackward} methods directly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git.go

    	return tags, nil
    }
    
    // repoSum returns a checksum of the entire repo state,
    // which can be checked (as Origin.RepoSum) to cache
    // the absence of a specific module version.
    // The caller must supply refs, the result of a successful r.loadRefs.
    func (r *gitRepo) repoSum(refs map[string]string) string {
    	var list []string
    	for ref := range refs {
    		list = append(list, ref)
    	}
    	sort.Strings(list)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Converter.java

      // Static converters
    
      /**
       * Returns a converter based on separate forward and backward functions. This is useful if the
       * function instances already exist, or so that you can supply lambda expressions. If those
       * circumstances don't apply, you probably don't need to use this; subclass {@code Converter} and
       * implement its {@link #doForward} and {@link #doBackward} methods directly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top