Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for reflectively (0.14 sec)

  1. pilot/pkg/networking/core/listener.go

    	}
    	if len(chain.sniHosts) > 0 {
    		fullWildcardFound := false
    		for _, h := range chain.sniHosts {
    			if h == "*" {
    				fullWildcardFound = true
    				// If we have a host with *, it effectively means match anything, i.e.
    				// no SNI based matching for this host.
    				break
    			}
    		}
    		if !fullWildcardFound {
    			chain.sniHosts = append([]string{}, chain.sniHosts...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    	se.AppendWorkloadHandler(kc.WorkloadInstanceHandler)
    
    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    // TestWorkloadInstances is effectively an integration test of composing the Kubernetes service registry with the
    // external service registry, which have cross-references by workload instances.
    func TestWorkloadInstances(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

                  RankedTensorType::get(/*shape=*/{}, builder.getI1Type()), true));
    
        op.getIsInitialized().replaceAllUsesWith(const_true);
        op.erase();
      }
    }
    
    // Performs store-load forwarding. This effectively removes
    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	syncPeriod           time.Duration
    	flushed              bool
    
    	// These are effectively const and do not need the mutex to be held.
    	nftables       knftables.Interface
    	masqueradeAll  bool
    	masqueradeMark string
    	conntrack      conntrack.Interface
    	localDetector  proxyutil.LocalTrafficDetector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    // If allowCommaOk is set and e is a map index, comma-ok, or comma-err
    // expression, the result is a two-element list containing the value
    // of e, and an untyped bool value or an error value, respectively.
    // If an error occurred, list[0] is not valid.
    func (check *Checker) multiExpr(e ast.Expr, allowCommaOk bool) (list []*operand, commaOk bool) {
    	var x operand
    	check.rawExpr(nil, &x, e, nil, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

       * of this method requires a corresponding call to {@link #maximumWeight(long)} prior to calling
       * {@link #build}. Weights are measured and recorded when entries are inserted into the cache, and
       * are thus effectively static during the lifetime of a cache entry.
       *
       * <p>When the weight of an entry is zero it will not be considered for size-based eviction
       * (though it still may be evicted by other means).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         (AxesIsLastDimension $axes, $logits)]>;
    }
    
    def CanOptimizeIdentitySliceOp : Constraint<CPred<
      "TFL::CanOptimizeIdentitySliceOp($0, $1, $2)">>;
    
    // Remove Slice ops slicing the whole input tensor, effectively no-op.
    def OptimizeSliceOp : Pat<
      (TFL_SliceOp:$output $input, (Arith_ConstantOp $begin), (Arith_ConstantOp $size)),
      (replaceWithValue $input),
      [(CanOptimizeIdentitySliceOp $input, $begin, $size)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	}
    
    	// TLS 1.0 is susceptible to a chosen-plaintext
    	// attack when using block mode ciphers due to predictable IVs.
    	// This can be prevented by splitting each Application Data
    	// record into two records, effectively randomizing the IV.
    	//
    	// https://www.openssl.org/~bodo/tls-cbc.txt
    	// https://bugzilla.mozilla.org/show_bug.cgi?id=665814
    	// https://www.imperialviolet.org/2012/01/15/beastfollowup.html
    
    	var m int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    Each binary to be produced is associated with a set of compiler and linker settings, which include command-line arguments as well as macro definitions. These settings can be applied to all binaries, an individual binary, or selectively to a group of binaries based on some criteria.
    
    === Example: Settings that apply to all binaries
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    	if debugScanConservative && gp.asyncSafePoint {
    		print("scanning async preempted goroutine ", gp.goid, " stack [", hex(gp.stack.lo), ",", hex(gp.stack.hi), ")\n")
    	}
    
    	// Scan the saved context register. This is effectively a live
    	// register that gets moved back and forth between the
    	// register and sched.ctxt without a write barrier.
    	if gp.sched.ctxt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top