Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,255 for yearly (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http/HttpStatusCodes.kt

    /** `100 Continue` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_CONTINUE = 100
    
    /** `102 Processing` (WebDAV - RFC 2518)  */
    const val HTTP_PROCESSING = 102
    
    /** `103 Early Hints (Early Hints - RFC 8297)` */
    const val HTTP_EARLY_HINTS = 103
    
    /** `307 Temporary Redirect` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_TEMP_REDIRECT = 307
    
    /** `308 Permanent Redirect` (HTTP/1.1 - RFC 7538)  */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. releasenotes/notes/external-name.yaml

        content: |
          Below describes *upcoming* changes to `ExternalName`.
          In this release, there is no behavioral changes by default.
          However, you can explicitly opt-in to the new behavior early if desired, and prepare your environments for the upcoming change.
          
          Kubernetes `ExternalName` `Service`s allow users to create new DNS entries. For example, you can create an `example` service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/runtime/runtime.go

    // preferable.)
    //
    // The strategy for computing the conversion rate is to write down nanotime and cputicks as
    // early in process startup as possible. From then, we just need to wait until we get values
    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

    /**
     * Interface used to locate the root directory for a given project.
     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// It will be set to off by default for certain time of period to prevent the impact on the existing users.
    	// It is strongly recommended to enable this feature gate as early as possible.
    	// The strict cost is specific for the extended libraries whose cost defined under k8s/apiserver/pkg/cel/library.
    	StrictCostEnforcementForVAP featuregate.Feature = "StrictCostEnforcementForVAP"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais.go

    // In the top level, operating on 8-bit input text,
    // the six freq scans are fixed size (256) instead of potentially
    // input-sized. Also, the frequency is counted once and cached
    // whenever there is room to do so (there is nearly always room in general,
    // and always room at the top level), which eliminates all but
    // the first freq_I_B text scans (that is, 5 of the 6).
    // So the top level of the recursion only does 22 - 6 - 5 = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pkg/registry/rbac/validation/policy_compact.go

    	resource := simpleResource{}
    
    	// If we have "complex" rule attributes, return early without allocations or expensive comparisons
    	if len(rule.ResourceNames) > 1 || len(rule.NonResourceURLs) > 0 {
    		return resource, false
    	}
    	// If we have multiple api groups or resources, return early
    	if len(rule.APIGroups) != 1 || len(rule.Resources) != 1 {
    		return resource, false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue20333.go

    // compile
    
    // Copyright 2017 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.
    
    // Issue 20333: early checkwidth of [...] arrays led to compilation errors.
    
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Println(&[...]string{"abc", "def", "ghi"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:18:55 UTC 2017
    - 341 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_vendor.txt

    module vend/hello
    
    go 1.16
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    -- vend/hello/hello_test.go --
    package main
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1000 bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link5.txt

    [Go home page]: https://duplicate.ignored
    
    They're really great!
    
    -- gofmt --
    See the [Go home page] and the [pkg
    site].
    
    They're really great!
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    
    [Go home page]: https://duplicate.ignored
    
    -- text --
    See the Go home page and the pkg site.
    
    They're really great!
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 772 bytes
    - Viewed (0)
Back to top