Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for aranes (0.18 sec)

  1. src/runtime/arena_test.go

    			if len(sl) != 0 {
    				t.Errorf("expected requested zero-sized slice to still have zero length: got %x, want 0", len(sl))
    			}
    			arena.Free()
    		})
    	})
    
    	// Run a GC cycle to get any arenas off the quarantine list.
    	GC()
    
    	if n := GlobalWaitingArenaChunks(); n != 0 {
    		t.Errorf("expected zero waiting arena chunks, found %d", n)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/config/security/security_test.go

    		{
    			name:      "unsupported path template - matchAnyTemplate with additional chars",
    			values:    []string{"/foo/{**}buzz/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - empty curly braces",
    			values:    []string{"/{*}/foo/{}/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with `*`",
    			values:    []string{"/foo/{*}/bar/*"},
    			wantError: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. docs/pt/docs/fastapi-people.md

    {% endfor %}
    
    </div>
    {% endif %}
    
    ## Patrocinadores
    
    Esses são os **Patrocinadores**. 😎
    
    Eles estão apoiando meu trabalho **FastAPI** (e outros), principalmente através de <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub Sponsors</a>.
    
    {% if sponsors %}
    {% if sponsors.gold %}
    
    ### Patrocinadores Ouro
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Verify.java

       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  5. src/net/http/routing_tree.go

    	}
    	// Lastly, match the pattern (there can be at most one) that has a multi
    	// wildcard in this position to the rest of the path.
    	if c := n.multiChild; c != nil {
    		// Don't record a match for a nameless wildcard (which arises from a
    		// trailing slash in the pattern).
    		if c.pattern.lastSegment().s != "" {
    			matches = append(matches, pathUnescape(path[1:])) // remove initial slash
    		}
    		return c, matches
    	}
    	return nil, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/a.out.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p arm
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 16
    )
    
    /* -1 disables use of REGARG */
    const (
    	REGARG = -1
    )
    
    const (
    	REG_R0 = obj.RBaseARM + iota // must be 16-aligned
    	REG_R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

    @ElementTypesAreNonnullByDefault
    enum BloomFilterStrategies implements BloomFilter.Strategy {
      /**
       * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael
       * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the
       * performance of a Bloom filter (yet only needs two 32bit hash functions).
       */
      MURMUR128_MITZ_32() {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    // returns because it stops execution of the calling thread.
    // It is the base case in the recursion.
    func isIntrinsicNoReturn(fn *types.Func) bool {
    	// Add functions here as the need arises, but don't allocate memory.
    	path, name := fn.Pkg().Path(), fn.Name()
    	return path == "syscall" && (name == "Exit" || name == "ExitProcess" || name == "ExitThread") ||
    		path == "runtime" && name == "Goexit"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    // argMatcher recursively matches types against the printfArgType t.
    //
    // To short-circuit recursion, it keeps track of types that have already been
    // matched (or are in the process of being matched) via the seen map. Recursion
    // arises from the compound types {map,chan,slice} which may be printed with %d
    // etc. if that is appropriate for their element types, as well as from type
    // parameters, which are expanded to the constituents of their type set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab_test.go

    		t.Skip("not relevant to Go 1.2 symbol table")
    	}
    
    	for _, o := range tab.Files {
    		// A source file can appear multiple times in a
    		// object.  alineFromLine will always return alines in
    		// the first file, so track which lines we've seen.
    		found := make(map[string]int)
    		for i := 0; i < 1000; i++ {
    			path, line := o.lineFromAline(i)
    			if path == "" {
    				break
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top