Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 599 for Avery (0.05 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: 'the parent of the task events is the root build operation'
            def runTasks = events.operation("Run tasks")
            events.tasks.every { it.descriptor.parent == runTasks.descriptor }
    
            when: 'listening to task progress events when no build operation listener is attached'
            events.clear()
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    //
    // * structurality: both `ForbiddenGenerics` and `ForbiddenExtensions` only have zero values, with the two exceptions for IntOrString.
    // * RawExtension: for every schema with `x-kubernetes-embedded-resource: true`, `x-kubernetes-preserve-unknown-fields: true` and `type: object` are set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Converter.java

     */
    public abstract class Converter<A, B> implements Function<A, B> {
      private final boolean handleNullAutomatically;
    
      // We lazily cache the reverse view to avoid allocating on every call to reverse().
      @LazyInit @RetainedWith @CheckForNull private transient Converter<B, A> reverse;
    
      /** Constructor for use by subclasses. */
      protected Converter() {
        this(true);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    	benchrand = make([]byte, 1e6)
    )
    
    // Of all possible inputs, the random bytes have the least amount of substring
    // repetition, and the repeated bytes have the most. For most algorithms,
    // the running time of every input will be between these two.
    func benchmarkNew(b *testing.B, random bool) {
    	b.ReportAllocs()
    	b.StopTimer()
    	data := benchdata
    	if random {
    		data = benchrand
    		if data[0] == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	defaultValue string              // Default value for this field.
    }
    
    var (
    	configFields []configField // Precomputed metadata per config field
    
    	// configFieldMap holds an entry for every config field as well as an
    	// entry for every valid choice for a multi-choice field.
    	configFieldMap map[string]configField
    )
    
    func init() {
    	// Config names for fields that are not saved in settings and therefore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         *
         * Return `null` if the type do not need approximation and can be rendered as is
         * Otherwise, for type `T` return type `S` such `T <: S` and `T` and every type argument is denotable
         */
        public fun KaType.approximateToSuperPublicDenotable(approximateLocalTypes: Boolean): KaType? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    This is just a **quick tutorial / refresher** about Python type hints. It covers only the minimum necessary to use them with **FastAPI**... which is actually very little.
    
    **FastAPI** is all based on these type hints, they give it many advantages and benefits.
    
    But even if you never use **FastAPI**, you would benefit from learning a bit about them.
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        }
      }
    
      // Collects op-based side effects for `op` in `op_side_effect_map_[op]`.
      void CollectOpSideEffects(Operation* op) {
        if (!MayHaveSideEffect(op)) return;
        // Skip following ops to avoid that every island, graph and function is
        // classified as unknown side-effecting.
        if (isa<tf_executor::YieldOp, tf_executor::FetchOp,
                mlir::func::ReturnOp>(op))
          return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ArrayTable.java

     * it requires that the complete universe of rows and columns be specified at construction time.
     * Second, it is always backed by an array large enough to hold a value for every possible
     * combination of row and column keys. (This is rarely optimal unless the table is extremely dense.)
     * Finally, every possible combination of row and column keys is always considered to have a value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if !matched {
    				t.Errorf("Failed to detect long backward BC fixup in (%v):%s\n", platenv, out)
    			}
    		}
    	}
    }
    
    // gen generates a very large program with a very long forward and backwards conditional branch.
    func gen(buf *bytes.Buffer, jmpinsn string) {
    	fmt.Fprintln(buf, "TEXT f(SB),0,$0-0")
    	fmt.Fprintln(buf, "label_start:")
    	fmt.Fprintln(buf, jmpinsn, "label_end")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top