Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,441 for told (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/RateLimiter.java

        /** Constructor for use by subclasses. */
        protected SleepingStopwatch() {}
    
        /*
         * We always hold the mutex when calling this. TODO(cpovirk): Is that important? Perhaps we need
         * to guarantee that each call to reserveEarliestAvailable, etc. sees a value >= the previous?
         * Also, is it OK that we don't hold the mutex when sleeping?
         */
        protected abstract long readMicros();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(FoldConstantsToSubgraphPass)
    
      llvm::StringRef getArgument() const final {
        return "tfl-fold-constants-to-subgraph";
      }
      llvm::StringRef getDescription() const final {
        return "Fold constants into each subgraph.";
      }
      FoldConstantsToSubgraphPass() = default;
      FoldConstantsToSubgraphPass(const FoldConstantsToSubgraphPass& other) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemUtils.java

                    path = pomPath.toAbsolutePath().toString();
                }
            }
    
            return path;
        }
    
        static String toId(Model model) {
            if (model == null) {
                return "";
            }
            return toId(model.getDelegate());
        }
    
        static String toId(org.apache.maven.api.model.Model model) {
            String groupId = model.getGroupId();
            if (groupId == null && model.getParent() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/release-notes.css

      color: #02303A;
      content: '\002022';
      font: 0.9em bold sans-serif;
      margin-left: -1em;
      margin-right: 0.4em;
    }
    
    li.mainTopic :before {
      color: #02303A;
      content: '\002022';
      font: 0.9em bold sans-serif;
      margin-left: -1em;
      margin-right: 0.4em;
    }
    
    li.subTopic :before {
      color: #02303A;
      content: '\002022';
      font: 0.9em bold sans-serif;
      margin-left: 3em;
      margin-right: 0.4em;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    				"requests.storage",
    				"persistentvolumeclaims",
    				"gold.storageclass.storage.k8s.io/requests.storage",
    				"gold.storageclass.storage.k8s.io/persistentvolumeclaims",
    			},
    
    			want: []corev1.ResourceName{
    				"count/persistentvolumeclaims",
    				"requests.storage",
    				"persistentvolumeclaims",
    				"gold.storageclass.storage.k8s.io/requests.storage",
    				"gold.storageclass.storage.k8s.io/persistentvolumeclaims",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    public class DefaultColorMap implements ColorMap {
        private static final String STATUS_BAR = "statusbar";
        private static final String BOLD = "bold";
        private static final String COLOR_DIVIDER = "-";
    
        /**
         * Maps a {@link StyledTextOutput.Style} to the default color spec (that can be overridden by system properties)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/EitherTest.groovy

        }
    
        def "fold() subsumes flatMap()"() {
            expect:
            left.fold({ assert it == LEFT; either(LEFT2) }, { assert false }).left.get() == LEFT2
    
            right.fold({ assert false }, { assert it == RIGHT; either(RIGHT2) }).right.get() == RIGHT2
        }
    
        def "fold() works"() {
            expect:
            left.fold({ assert it == LEFT; LEFT2 }, { assert false }) == LEFT2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/LatestVersionSelectorTest.groovy

            def metadata = Stub(ComponentMetadata) {
                getStatus() >> "silver"
                getStatusScheme() >> ["bronze", "silver", "gold"]
            }
    
            expect:
            accept("latest.bronze", metadata)
            accept("latest.silver", metadata)
            !accept("latest.gold", metadata)
        }
    
        def "rejects a candidate version if selector's status is not contained in candidate's status scheme"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

                                                TypeRangeWithDesc range0,
                                                TypeRangeWithDesc range1);
    
    // Fold Arithmetic Op if one of the operands is a constant known to be an
    // Identity (e.g. X+0, X*1, etc...). For commutative operations fold if
    // known identity value is either lhs or rhs.
    template <
        typename OpT,
        typename std::enable_if<llvm::is_one_of<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top