Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for 202s (0.05 sec)

  1. src/log/slog/internal/benchmarks/benchmarks.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package benchmarks contains benchmarks for slog.
    //
    // These benchmarks are loosely based on github.com/uber-go/zap/benchmarks.
    // They have the following desirable properties:
    //
    //   - They test a complete log event, from the user's call to its return.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/log/slog/json_handler.go

    		if c == utf8.RuneError && size == 1 {
    			if start < i {
    				str(s[start:i])
    			}
    			str(`\ufffd`)
    			i += size
    			start = i
    			continue
    		}
    		// U+2028 is LINE SEPARATOR.
    		// U+2029 is PARAGRAPH SEPARATOR.
    		// They are both technically valid characters in JSON strings,
    		// but don't work in JSONP, which has to be evaluated as JavaScript,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    /*
    Copyright 2020 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. docs/en/data/sponsors.yml

        img: https://fastapi.tiangolo.com/img/sponsors/cryptapi.svg
      - url: https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023
        title: "Build, run and scale your apps on a modern, reliable, and secure PaaS."
        img: https://fastapi.tiangolo.com/img/sponsors/platform-sh.png
      - url: https://www.porter.run
        title: Deploy FastAPI on AWS with a few clicks
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. docs/en/overrides/main.html

          <a title="Build, run and scale your apps on a modern, reliable, and secure PaaS." style="display: block; position: relative;" href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank">
            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/platform-sh-banner.png" />
          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/time/zoneinfo_test.go

    		date:       func(loc *time.Location) time.Time { return time.Date(2020, time.October, 29, 15, 30, 0, 0, loc) },
    		wantName:   "CET",
    		wantOffset: 3600,
    	},
    	{
    		// 2021a slim tzdata for America/Nuuk.
    		zoneName:   "America/Nuuk",
    		fileName:   "2021a_America_Nuuk",
    		date:       func(loc *time.Location) time.Time { return time.Date(2020, time.October, 29, 15, 30, 0, 0, loc) },
    		wantName:   "-03",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/html/template/content_test.go

    			`<a href="?q={{.}}">`,
    			[]string{
    				`%3cb%3e%20%22foo%25%22%20O%27Reilly%20%26bar%3b`,
    				`a%5bhref%20%3d~%20%22%2f%2fexample.com%22%5d%23foo`,
    				`Hello%2c%20%3cb%3eWorld%3c%2fb%3e%20%26amp%3btc%21`,
    				`%20dir%3d%22ltr%22`,
    				`c%20%26%26%20alert%28%22Hello%2c%20World%21%22%29%3b`,
    				`Hello%2c%20World%20%26%20O%27Reilly%5cu0021`,
    				// Quotes and parens are escaped but %69 is not over-escaped. HTML escaping is done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_loong64.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && loong64
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/loong64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:58:55 UTC 2022
    - 793 bytes
    - Viewed (0)
  9. src/go/doc/comment/mkstd.sh

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This could be a good use for embed but go/doc/comment
    # is built into the bootstrap go command, so it can't use embed.
    # Also not using embed lets us emit a string array directly
    # and avoid init-time work.
    
    (
    echo "// Copyright 2022 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 768 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    	case 1:
    		ARM64.HasFCMA = true
    	}
    
    	switch extractBits(isar1, 20, 23) {
    	case 1:
    		ARM64.HasLRCPC = true
    	}
    
    	// ID_AA64PFR0_EL1
    	switch extractBits(pfr0, 16, 19) {
    	case 0:
    		ARM64.HasFP = true
    	case 1:
    		ARM64.HasFP = true
    		ARM64.HasFPHP = true
    	}
    
    	switch extractBits(pfr0, 20, 23) {
    	case 0:
    		ARM64.HasASIMD = true
    	case 1:
    		ARM64.HasASIMD = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top