Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Avery (0.23 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    #include "tensorflow/core/graph/graph_node_util.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/lib/hash/hash.h"
    
    // ALGORITHM OVERVIEW
    // ==================
    //
    // We map every output produced by each node in the TensorFlow graph (including
    // control dependence) into an instance of the Predicate class.  Instances of
    // Predicate denote logical formulas and mapping a node `n` to a predicate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return success();
        }
        // Replace the op with the input if output is only used by TF ops.
        // Currently this is more on the conservative side since we need to ensure
        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
        for (Operation *user : identity->getUsers()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        bool deterministic_cluster_names;
    
        int max_cluster_size;
        int min_cluster_size;
    
        // Compiler fuel for the auto-clustering algorithm.
        //
        // We decrement this value by one on every time we choose a compilation
        // candidate and we stop clustering when it hits zero.  This means the
        // initial value for this variable (via --tf_xla_clustering_fuel=N)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				s.t.Helper()
    				s.assertNoEvent(s.t)
    			},
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			s := newAmbientTestServer(t, testC, testNW)
    			// These steps happen for every test regardless of traffic type.
    			// It involves creating a waypoint for the specified traffic type
    			// then creating a workload and a service with no annotations set
    			// on these objects yet.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	// inspector: https://github.com/envoyproxy/envoy/issues/13601. This leads to
    	// excessive logging and loss of control over the config. For inbound this is not
    	// needed, since we are explicitly setting transport protocol in every single
    	// match. We can do this for outbound as well, at which point this could be
    	// removed, but have not yet
    	if needTLSInspector || needHTTPInspector {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

          break
        }
        $sleeptime = 2
        Start-Sleep ${sleeptime}
        ${elapsed} += ${sleeptime}
      }
    }
    
    # Adds a route to the GCE metadata server to every network interface.
    function Add_GceMetadataServerRoute {
      # Before setting up HNS the Windows VM has a "vEthernet (nat)" interface and
      # a "Ethernet" interface, and the route to the metadata server exists on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //
        // (The abs is because lgamma is the log of the absolute value of the gamma
        // function.)
        //
        // We have to be careful when computing the final term above. gamma(x) goes
        // to +/-inf at every integer x < 0, and this is controlled by the
        // sin(pi * x) term.  The slope is large, so precision is particularly
        // important.
        //
        // Because abs(sin(pi * x)) has period 1, we can equivalently use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	}
    }
    
    func TestMain(m *testing.M) {
    	klog.InitFlags(nil)
    	os.Exit(m.Run())
    }
    
    // TestNoRestraint tests whether the no-restraint factory gives every client what it asks for
    // even though that is unfair.
    // Expects fairness when there is no competition, unfairness when there is competition.
    func TestNoRestraint(t *testing.T) {
    	metrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    type crdHandler struct {
    	versionDiscoveryHandler *versionDiscoveryHandler
    	groupDiscoveryHandler   *groupDiscoveryHandler
    
    	customStorageLock sync.Mutex
    	// customStorage contains a crdStorageMap
    	// atomic.Value has a very good read performance compared to sync.RWMutex
    	// see https://gist.github.com/dim/152e6bf80e1384ea72e17ac717a5000a
    	// which is suited for most read and rarely write cases
    	customStorage atomic.Value
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top