Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 191 for robust (0.17 sec)

  1. src/runtime/symtabinl_test.go

    			// going until we definitely hit the end. If we see a "?" in the
    			// middle of unwinding, that's a real problem.
    			//
    			// TODO: If we ever have function end information, use that to make
    			// this robust.
    			continue
    		}
    		for ; uf.valid(); uf = u.next(uf) {
    			file, line := u.fileLine(uf)
    			const wantFile = "symtabinl_test.go"
    			if !stringslite.HasSuffix(file, wantFile) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            TODO change this so that we extract all the information at compile time.
    
            At the moment we use the transform to:
    
            1. validate/restrict the syntax
            2. transform rules into something more robust (e.g. foo.bar.baz {} into configure("foo.bar.baz", {})) - no dynamic propertyMissing() nonsense
            3. hoist out input references (i.e. $()) into an annotation on rule closure classes to make available
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/dist/testjson.go

    	if len(line) > 0 && line[0] == '{' {
    		// Plausible test2json output. Parse it generically.
    		//
    		// We go to some effort here to preserve key order while doing this
    		// generically. This will stay robust to changes in the test2json
    		// struct, or other additions outside of it. If humans are ever looking
    		// at the output, it's really nice to keep field order because it
    		// preserves a lot of regularity in the output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    }
    
    func TestSetString(t *testing.T) {
    	matches(t, Set{"x": "y"}, "x=y")
    	matches(t, Set{"foo": "bar"}, "foo=bar")
    	matches(t, Set{"foo": "bar", "baz": "qup"}, "baz=qup,foo=bar")
    
    	// TODO: Make our label representation robust enough to handle labels
    	// with ",=!" characters in their names.
    }
    
    func TestLabelHas(t *testing.T) {
    	labelHasTests := []struct {
    		Ls  Labels
    		Key string
    		Has bool
    	}{
    		{Set{"x": "y"}, "x", true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  5. docs/de/docs/project-generation.md

        * **Einfach**: Einfach zu bedienen und zu erlernen. Weniger Zeit für das Lesen von Dokumentationen.
        * **Kurz**: Codeverdoppelung minimieren. Mehrere Funktionalitäten aus jeder Parameterdeklaration.
        * **Robust**: Erhalten Sie produktionsbereiten Code. Mit automatischer, interaktiver Dokumentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/websockets.md

        If you need something easy to integrate with FastAPI but that is more robust, supported by Redis, PostgreSQL or others, check <a href="https://github.com/encode/broadcaster" class="external-link" target="_blank">encode/broadcaster</a>.
    
    ## More info
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/dom.go

    	b     *Block
    	index int // index is the number of successor edges of b that have already been explored.
    }
    
    // postorderWithNumbering provides a DFS postordering.
    // This seems to make loop-finding more robust.
    func postorderWithNumbering(f *Func, ponums []int32) []*Block {
    	seen := f.Cache.allocBoolSlice(f.NumBlocks())
    	defer f.Cache.freeBoolSlice(seen)
    
    	// result ordering
    	order := make([]*Block, 0, len(f.Blocks))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   not implemented by us, you will get a run-time failure.  In that
    //   case, please try to rewrite your regular expression within the
    //   above syntax.
    //
    //   This implementation is *not* meant to be as highly tuned or robust
    //   as a compiled regex library, but should perform well enough for a
    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/GcFinalization.java

       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top