Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for opldrr (1.51 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	manager.podControl = &fakePodControl
    
    	if manager.queue.Len() != 0 {
    		t.Fatal("Unexpected item in the queue")
    	}
    
    	oldRS := newReplicaSet(1, map[string]string{"foo": "bar"})
    	oldRS, err := client.AppsV1().ReplicaSets(oldRS.Namespace).Create(tCtx, oldRS, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// not acquire the token. If the file is older than the
    	// period, the process is allowed to remove the file and
    	// try to re-create it.
    	fi, err := os.Stat(tokenfile)
    	if err == nil {
    		if time.Since(fi.ModTime()) < period {
    			return false
    		}
    		// There's a possible race here where two processes check the
    		// token file and see that it's older than the period, then the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //
    //   - kubeadm v1.15.x and newer can be used to migrate from v1beta1 to v1beta2.
    //   - kubeadm v1.22.x and newer no longer support v1beta1 and older APIs, but can be used to migrate v1beta2 to v1beta3.
    //   - kubeadm v1.27.x and newer no longer support v1beta2 and older APIs.
    //   - TODO: https://github.com/kubernetes/kubeadm/issues/2890
    //     add version that can be used to convert to v1beta4
    //
    // # Basics
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/select.go

    		// A longer term problem with the sanity check is that the exact details
    		// may change over time: there may be other reasons that a future Go
    		// version might invoke an older one, and the older one won't know why.
    		// Best to just accept that we were invoked to provide a specific toolchain
    		// (which we just checked) and leave it at that.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/schema-extra-example.md

    ## Technical Details
    
    !!! tip
        If you are already using **FastAPI** version **0.99.0 or above**, you can probably **skip** these details.
    
        They are more relevant for older versions, before OpenAPI 3.1.0 was available.
    
        You can consider this a brief OpenAPI and JSON Schema **history lesson**. 🤓
    
    !!! warning
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. maven-bom/pom.xml

      </properties>
    
      <dependencyManagement>
        <!-- Not included:
             - apache-maven, as it delivers the binaries
             - maven-compat, only used by apache-maven distributions to support older releases
             - maven-slf4j-provider, only used by apache-maven distributions
             - maven-wrapper, only used by apache-maven-wrapper distributions -->
        <dependencies>
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    func (t *MicroTime) UnmarshalQueryParameter(str string) error {
    	if len(str) == 0 {
    		t.Time = time.Time{}
    		return nil
    	}
    	// Tolerate requests from older clients that used JSON serialization to build query params
    	if len(str) == 4 && str == "null" {
    		t.Time = time.Time{}
    		return nil
    	}
    
    	pt, err := time.Parse(RFC3339Micro, str)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_x86.go

    	X86.HasSSE41 = isSet(ecx1, cpuid_SSE41)
    	X86.HasSSE42 = isSet(ecx1, cpuid_SSE42)
    	X86.HasPOPCNT = isSet(ecx1, cpuid_POPCNT)
    	X86.HasAES = isSet(ecx1, cpuid_AES)
    
    	// OSXSAVE can be false when using older Operating Systems
    	// or when explicitly disabled on newer Operating Systems by
    	// e.g. setting the xsavedisable boot option on Windows 10.
    	X86.HasOSXSAVE = isSet(ecx1, cpuid_OSXSAVE)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

            child2.projectDependencies.isEmpty()
            child2.classpath.isEmpty()
            !taskExecuted(out, ":eclipseClosedDependencies")
        }
    
        @TargetGradleVersion("=5.5")
        def "will not fail against older gradle versions"() {
            setup:
            multiProjectBuildInRootFolder("root", ["child1", "child2"]) {
                buildFile << """
                subprojects {
                    apply plugin: 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    func (t *Time) UnmarshalQueryParameter(str string) error {
    	if len(str) == 0 {
    		t.Time = time.Time{}
    		return nil
    	}
    	// Tolerate requests from older clients that used JSON serialization to build query params
    	if len(str) == 4 && str == "null" {
    		t.Time = time.Time{}
    		return nil
    	}
    
    	pt, err := time.Parse(time.RFC3339, str)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top