Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 123 for better (0.18 sec)

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

     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
      private Synchronized() {}
    
      static class SynchronizedObject implements Serializable {
        final Object delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
      private Synchronized() {}
    
      static class SynchronizedObject implements Serializable {
        final Object delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import org.codehaus.plexus.interpolation.BasicInterpolator;
    import org.codehaus.plexus.interpolation.StringSearchInterpolator;
    import org.codehaus.plexus.logging.LoggerManager;
    import org.eclipse.aether.DefaultRepositoryCache;
    import org.eclipse.aether.transfer.TransferListener;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.sonatype.plexus.components.cipher.DefaultPlexusCipher;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. .bazelrc

    # errors.
    # There is ongoing work on Bazel team's side to provide support for transitive
    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    
    		if crd.Spec.PreserveUnknownFields == false {
    			// we don't own s completely, e.g. defaults are not deep-copied. So better make a copy here.
    			s = s.DeepCopy()
    
    			if err := structuraldefaulting.PruneDefaults(s); err != nil {
    				// This should never happen. If it does, it is a programming error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                // Skip properties with non-abstract getter or setter implementations
                for (MethodMetadata getter : property.getters) {
                    if (getter.shouldImplement() && !getter.isAbstract()) {
                        return false;
                    }
                }
                for (Method setter : property.setters) {
                    if (!Modifier.isAbstract(setter.getModifiers())) {
                        return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    					},
    					Comment: &svcPortNameString,
    				})
    			}
    		}
    
    		// Capture nodeports.
    		if svcInfo.NodePort() != 0 {
    			if hasEndpoints {
    				// Jump to the external destination chain.  For better or for
    				// worse, nodeports are not subect to loadBalancerSourceRanges,
    				// and we can't change that.
    				tx.Add(&knftables.Element{
    					Map: serviceNodePortsMap,
    					Key: []string{
    						protocol,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      auto func = getOperation();
    
      // Check illegal ops in a TFLite pipeline (e.g. trainning only ops) , since
      // PrepareTFPass is the very first TFLite pass in the pipeline.
      // TODO(jingpu): It might be better to split this check into its own pass
      // to make things more modular.
      if (failed(ValidateOp(func))) {
        func.emitError() << "tfl-prepare-tf pass failed.";
        signalPassFailure();
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Filtering supersedes the inclusion/exclusion mechanism, but you may still come across the latter in the wild.
    
    With Gradle's test filtering you can select tests to run based on:
    
     * A fully-qualified class name or fully qualified method name, e.g. `org.gradle.SomeTest`, `org.gradle.SomeTest.someMethod`
     * A simple class name or method name if the pattern starts with an upper-case letter, e.g. `SomeTest`, `SomeTest.someMethod` (since Gradle 4.7)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-embedding-pipelining`
    
    _Rewrite graph for embedding pipelining_
    
    For architectures that support accelerated embedding lookups, this pass will
    rewrite the graph to use pipelining for better device utilization.
    ### `-tf-embedding-program-key`
    
    _Sets the program key for embedding ops._
    
     Passes in the program key to embedding ops. Will move the embedding ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top