Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 476 for especially (0.17 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         * jar multiple times per running test class.  We use this set to avoid doing an IO operation to check if the jar has already been extracted,
         * slightly increasing the speed a test class runs, especially one with many test methods defined on itself or in its type hierarchy.
         */
        private final static Set<String> EXTRACTED_JARS = new HashSet<>();
        private final TestDirectoryProvider testDirectoryProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      emitError(callsite_loc) << "Error 1";
      emitError(callsite_loc2) << "Error 2";
      Status s_no_filter = ssdh_no_filter.ConsumeStatus();
      // All files should be present, especially the 'filtered' ones.
      EXPECT_THAT(s_no_filter.message(), HasSubstr("keras"));
      EXPECT_THAT(s_no_filter.message(), HasSubstr("my_op"));
      EXPECT_THAT(s_no_filter.message(), HasSubstr("filtered_file_A"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. README.md

    6.  For the mainline flavor, we test the libraries using OpenJDK 8, 11, and 17
        on Linux, with some additional testing on newer JDKs and on Windows. Some
        features, especially in `com.google.common.io`, may not work correctly in
        non-Linux environments. For the Android flavor, our unit tests also run on
        API level 21 (Lollipop).
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

      public final void clear() {
        backingMap.clear();
        size = 0;
      }
    
      /**
       * Skeleton of per-entry iterators. We could push this down and win a few bytes, but it's complex
       * enough it's not especially worth it.
       */
      abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        int entryIndex = backingMap.firstIndex();
        int toRemove = -1;
        int expectedModCount = backingMap.modCount;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/pass.go

    			return q
    		}
    		c++
    		if c >= 5000 {
    			// infinite loop
    			return nil
    		}
    	}
    	panic("unreachable")
    }
    
    // checkaddr checks that a has an expected encoding, especially TYPE_CONST vs TYPE_ADDR.
    func checkaddr(ctxt *Link, p *Prog, a *Addr) {
    	switch a.Type {
    	case TYPE_NONE, TYPE_REGREG2, TYPE_REGLIST:
    		return
    
    	case TYPE_BRANCH, TYPE_TEXTSIZE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    They tend to require more complex configurations, a message/job queue manager, like RabbitMQ or Redis, but they allow you to run background tasks in multiple processes, and especially, in multiple servers.
    
    To see an example, check the [Project Generators](../project-generation.md){.internal-link target=_blank}, they all include Celery already configured.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/ImmutableGraph.java

      }
    
      @Override
      BaseGraph<N> delegate() {
        return backingGraph;
      }
    
      /**
       * A builder for creating {@link ImmutableGraph} instances, especially {@code static final}
       * graphs. Example:
       *
       * <pre>{@code
       * static final ImmutableGraph<Country> COUNTRY_ADJACENCY_GRAPH =
       *     GraphBuilder.undirected()
       *         .<Country>immutable()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/lockedfile/lockedfile.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Although the operating system will drop locks for open files when the go
    	// command exits, we want to hold locks for as little time as possible, and we
    	// especially don't want to leave a file locked after we're done with it. Our
    	// Close method is what releases the locks, so use a finalizer to report
    	// missing Close calls on a best-effort basis.
    	runtime.SetFinalizer(f, func(f *File) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  9. docs/pt/docs/fastapi-people.md

    * [Create Pull Requests](help-fastapi.md#crie-um-pull-request){.internal-link target=_blank}.
    * Revisar Pull Requests, [especially important for translations](contributing.md#traducoes){.internal-link target=_blank}.
    
    Uma salva de palmas para eles. 👏 🙇
    
    ## Usuários mais ativos do ultimo mês
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/Dispatcher.java

      }
    
      /**
       * Returns a dispatcher that queues events that are posted in a single global queue. This behavior
       * matches the original behavior of AsyncEventBus exactly, but is otherwise not especially useful.
       * For async dispatch, an {@linkplain #immediate() immediate} dispatcher should generally be
       * preferable.
       */
      static Dispatcher legacyAsync() {
        return new LegacyAsyncDispatcher();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top