Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 350 for composed (0.23 sec)

  1. src/net/lookup.go

    	PreferGo bool
    
    	// StrictErrors controls the behavior of temporary errors
    	// (including timeout, socket errors, and SERVFAIL) when using
    	// Go's built-in resolver. For a query composed of multiple
    	// sub-queries (such as an A+AAAA address lookup, or walking the
    	// DNS search list), this option causes such errors to abort the
    	// whole query instead of returning a partial result. This is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Because it is difficult to model <<feature_variants.adoc#feature_variants,optional feature variants>> as separate jars with pom metadata, libraries sometimes compose different jars with a different feature set.
    That is, instead of composing your flavor of the library from different feature variants, you select one of the pre-composed variants (offering everything in one jar).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Default to 0, means never send GOAWAY. Max is 0.02 to prevent break the apiserver.
    	GoawayChance float64
    
    	// MergedResourceConfig indicates which groupVersion enabled and its resources enabled/disabled.
    	// This is composed of genericapiserver defaultAPIResourceConfig and those parsed from flags.
    	// If not specify any in flags, then genericapiserver will only enable defaultAPIResourceConfig.
    	MergedResourceConfig *serverstore.ResourceConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Ordering.java

       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
       * compound ordering with three or more components, simply chain multiple calls to this method.
       *
       * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to
       * one created using {@link Ordering#compound(Iterable)} on the same component comparators.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA
        Ordering<Number> g = objects.compound(numbers).compound(objects);
        Ordering<Number> h = objects.compound(objects).compound(numbers);
    
        Ordering<Number> i = numbers.compound(objects.compound(objects));
        Ordering<Number> j = objects.compound(numbers.compound(objects)); // bad IDEA
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/switch.go

    	if defaultGoto == nil {
    		br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)
    		br.SetPos(br.Pos().WithNotStmt())
    		defaultGoto = br
    	}
    
    	s.Emit(&sw.Compiled)
    	sw.Compiled.Append(defaultGoto)
    	sw.Compiled.Append(body.Take()...)
    	walkStmtList(sw.Compiled)
    }
    
    // An exprSwitch walks an expression switch.
    type exprSwitch struct {
    	pos      src.XPos
    	exprname ir.Node // value being switched on
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * A call to a function, a simple/compound access to a property, or a simple/compound access through `get` and `set` convention.
     */
    public sealed class KaCall : KaLifetimeOwner
    
    /**
     * A call to a function, or a simple/compound access to a property.
     */
    public sealed class KaCallableMemberCall<S : KaCallableSymbol, C : KaCallableSignature<S>> : KaCall() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

    constexpr char kXlaMapOutsideCompilationAttr[] = "_xla_map_outside_compilation";
    constexpr char kXlaOutsideCompilationAttr[] = "_xla_outside_compilation";
    
    // Return true if `op` has attributes that say it can be outside compiled by
    // this pass. This pass ignores _xla_map_outside_compilation, which will only be
    // handled by extract_outside_compilation pass.
    bool HasOutsideCompilationAttribute(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/config.go

    }
    
    type Frontend interface {
    	Logger
    
    	// StringData returns a symbol pointing to the given string's contents.
    	StringData(string) *obj.LSym
    
    	// Given the name for a compound type, returns the name we should use
    	// for the parts of that compound type.
    	SplitSlot(parent *LocalSlot, suffix string, offset int64, t *types.Type) LocalSlot
    
    	// Syslook returns a symbol of the runtime function/variable with the
    	// given name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/decompose.cc

      // call stack.
      int max_iterators = 10;
      do {
        // canonicalization
        ApplyCanonicalization();
    
        // rewrite unregistered tf ops. Failed either because no ops can be
        // decomposed or the compose function isn't defined.
        auto rewrite_status = RewriteUnregisteredTFOps();
        // inline the tfr call op until there are no tfr.call op can be inlined.
        auto inline_status = InlineTFRFuncCalls();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top