Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for cheese (0.23 sec)

  1. tests/integration/README.md

    Many tests can take a while to start up for a variety of reasons, such as waiting for pods to start or waiting
    for a particular piece of configuration to propagate throughout the system. Where possible, it may be desirable
    to run these sorts of tests in parallel:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
            RunParallel(func(ctx framework.TestContext) {
                // ...
            }
    }
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    }
    
    type builder struct {
    	ctx resource.Context
    
    	// clusters contains the current set of clusters that subsequent With calls will be applied to,
    	// if the Config passed to With does not explicitly choose a cluster.
    	clusters cluster.Clusters
    
    	// configs contains configurations to be built, expanded per-cluster and grouped by cluster Kind.
    	configs []echo.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

      void runOnOperation() override;
    
     private:
      QuantizationOptions quant_options_;
      bool test_mode_;
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::TF),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	End *Event
    
    	GoroutineExecStats
    }
    
    // GoroutineExecStats contains statistics about a goroutine's execution
    // during a period of time.
    type GoroutineExecStats struct {
    	// These stats are all non-overlapping.
    	ExecTime          time.Duration
    	SchedWaitTime     time.Duration
    	BlockTimeByReason map[string]time.Duration
    	SyscallTime       time.Duration
    	SyscallBlockTime  time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    // If any of these are permitted, the wildcard portion must
    // disallow commas.
    //
    // Note also that GNU binutils accept any argument @foo
    // as meaning "read more flags from the file foo", so we must
    // guard against any command-line argument beginning with @,
    // even things like "-I @foo".
    // We use load.SafeArg (which is even more conservative)
    // to reject these.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/trace/goroutines.go

    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    In general the goroutine may not be executing in these special time ranges.
    For example, it may have blocked while trying to help the GC.
    This must be taken into account when interpreting the data.
    <br>
    <br>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/iface.go

    		return tab
    	}
    	// Load the current cache.
    	oldC := (*abi.TypeAssertCache)(atomic.Loadp(unsafe.Pointer(&s.Cache)))
    
    	if cheaprand()&uint32(oldC.Mask) != 0 {
    		// As cache gets larger, choose to update it less often
    		// so we can amortize the cost of building a new cache.
    		return tab
    	}
    
    	// Make a new cache.
    	newC := buildTypeAssertCache(oldC, t, tab)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val minSupertypeCount = matchingClassesRanking.maxOf { it.value }
    
            // If there are multiple matching classes, at least choose some stable one (based on the simple name ordering)
            return matchingClassesRanking
                .filter { it.value == minSupertypeCount }
                .keys
                .sortedBy { it.simpleName }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/productpage.py

        # For Lightstep, always propagate the x-ot-span-context header.
        # For Datadog, propagate the corresponding datadog headers.
        # For OpenCensusAgent and Stackdriver configurations, you can choose any
        # set of compatible headers to propagate within your application. For
        # example, you can propagate b3 headers or W3C trace context headers with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // message containing all configurable options.
    // Next ID: 9
    message QuantizationConfig {
      // Config presets provide predefined popular or common quantization specs.
      // Lightweight users may choose one of the presets for quick experiments. Each
      // preset is completely represented by other fields in `QuantizationConfig`.
      //
      // When extra entries in `QuantizationSpecs` are provided along with a preset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top