Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 926 for effects (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // appropriate fallback value (12 in this case) in opt mode. If you
    // need to test that a function has appropriate side-effects in opt
    // mode, include assertions against the side-effects.  A general
    // pattern for this is:
    //
    // EXPECT_DEBUG_DEATH({
    //   // Side-effects here will have an effect after this statement in
    //   // opt mode, but none in debug mode.
    //   EXPECT_EQ(12, DieInDebugOr12(&sideeffect));
    // }, "death");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      // Sub-ops that need a control dependency going into the island. This includes
      // sub-ops that do not depend on other sub-ops in the island and functional
      // control ops (e.g. if, while, case) with side effects that must not take
      // effect before the previous island is finished executing.
      llvm::SmallPtrSet<Operation*, 4> sources;
    
      // Sub-ops that need a control dependency going out of the island. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux.go

    	if config.Mode == proxyconfigapi.ProxyModeIPTables {
    		logger.Info("Using iptables Proxier")
    
    		if dualStack {
    			ipt, _ := getIPTables(s.PrimaryIPFamily)
    
    			// TODO this has side effects that should only happen when Run() is invoked.
    			proxier, err = iptables.NewDualStackProxier(
    				ctx,
    				ipt,
    				utilsysctl.New(),
    				exec.New(),
    				config.IPTables.SyncPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.td

      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def PinOpsWithSideEffectsPass : Pass<"tfl-pin-ops-with-side-effects", "mlir::func::FuncOp"> {
      let summary = "Pin operators with side effects";
      let description = [{
          This transformation pass wraps operations that have or depend on side effects in
          TFL::ControlNodeOp, which depend on the control token generated by the most recent
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/branchelim.go

    //
    //	bb0            bb0
    //	 | \          /   \
    //	 | bb1  or  bb1   bb2    <- trivial if/else blocks
    //	 | /          \   /
    //	bb2            bb3
    //
    // where the intermediate blocks are mostly empty (with no side-effects);
    // rewrite Phis in the postdominator as CondSelects.
    func branchelim(f *Func) {
    	// FIXME: add support for lowering CondSelects on more architectures
    	switch f.Config.arch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    		return name, offset, true
    	}
    
    	return nil, 0, false
    }
    
    func isSideEffect(n ir.Node) bool {
    	switch n.Op() {
    	// Assume side effects unless we know otherwise.
    	default:
    		return true
    
    	// No side effects here (arguments are checked separately).
    	case ir.ONAME,
    		ir.ONONAME,
    		ir.OTYPE,
    		ir.OLITERAL,
    		ir.ONIL,
    		ir.OADD,
    		ir.OSUB,
    		ir.OOR,
    		ir.OXOR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        // Check if the side effecting op right before this side effecting op, if
        // it is side effecting, can be head extracted. Because of op ordering due
        // to side effects, if this is not true, this op cannot be head extracted.
        // TODO(lyandy): Remove special handling of embedding ops. Currently the IR
        // is in a topological sort order and depending on that ordering, embedding
    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. pkg/controlplane/reconcilers/lease_test.go

    				t.Errorf("unexpected error reconciling: %v", err)
    			}
    
    			err = verifyCreatesAndUpdates(clientset, test.expectCreate, test.expectUpdate)
    			if err != nil {
    				t.Errorf("unexpected error in side effects: %v", err)
    			}
    
    			leases, err := fakeLeases.ListLeases()
    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    			// sort for comparison
    			sort.Strings(leases)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  10. pkg/controlplane/reconcilers/instancecount_test.go

    				t.Errorf("unexpected error reconciling: %v", err)
    			}
    
    			err = verifyCreatesAndUpdates(fakeClient, test.expectCreate, test.expectUpdate)
    			if err != nil {
    				t.Errorf("unexpected error in side effects: %v", err)
    			}
    		})
    	}
    
    	nonReconcileTests := []struct {
    		testName          string
    		serviceName       string
    		ip                string
    		endpointPorts     []corev1.EndpointPort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
Back to top