Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 297 for existed (0.11 sec)

  1. cmd/kubeadm/test/cmd/token_test.go

    )
    
    func TestCmdTokenGenerate(t *testing.T) {
    	kubeadmPath := getKubeadmPath()
    	stdout, _, _, err := RunCmd(kubeadmPath, "token", "generate")
    	if err != nil {
    		t.Fatalf("'kubeadm token generate' exited uncleanly: %v", err)
    	}
    
    	matched, err := regexp.MatchString(TokenExpectedRegex, stdout)
    	if err != nil {
    		t.Fatalf("encountered an error while trying to match 'kubeadm token generate' stdout: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/race/testdata/cgo_test.go

    func TestNoRaceCgoSync(t *testing.T) {
    	cmd := exec.Command(testenv.GoToolPath(t), "run", "-race", "cgo_test_main.go")
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if err := cmd.Run(); err != nil {
    		t.Fatalf("program exited with error: %v\n", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 22:49:11 UTC 2016
    - 497 bytes
    - Viewed (0)
  3. docs/pt/docs/external-links.md

    # Links externos e Artigos
    
    **FastAPI** tem uma grande comunidade em crescimento constante.
    
    Existem muitas postagens, artigos, ferramentas e projetos relacionados ao **FastAPI**.
    
    Aqui tem uma lista, incompleta, de algumas delas.
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/interfaces.go

    }
    
    // ShouldEvictResponse provides the result of a should evict request.
    type ShouldEvictResponse struct {
    	// if true, the pod should be evicted.
    	Evict bool
    	// a brief CamelCase reason why the pod should be evicted.
    	Reason string
    	// a brief message why the pod should be evicted.
    	Message string
    }
    
    // PodSyncHandler is invoked during each sync pod operation.
    type PodSyncHandler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/main8.c

    // license that can be found in the LICENSE file.
    
    // Test preemption.
    
    #include <stdlib.h>
    
    #include "libgo8.h"
    
    int main() {
    	GoFunction8();
    
    	// That should have exited the program.
    	abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 306 bytes
    - Viewed (0)
  6. test/fixedbugs/issue36437.go

    //go:build !nacl && !js && !wasip1 && gc
    
    // Copyright 2020 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.
    
    // Tests that when non-existent files are passed to the
    // compiler, such as in:
    //    go tool compile foo
    // we don't print the beginning position:
    //    foo:0: open foo: no such file or directory
    // but instead omit it and print out:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/apis/policy/types.go

    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    	// but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/pleg.go

    	ContainerStarted PodLifeCycleEventType = "ContainerStarted"
    	// ContainerDied - event type when the new state of container is exited.
    	ContainerDied PodLifeCycleEventType = "ContainerDied"
    	// ContainerRemoved - event type when the old state of container is exited.
    	ContainerRemoved PodLifeCycleEventType = "ContainerRemoved"
    	// PodSync is used to trigger syncing of a pod when the observed change of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/BasicCallInterceptionTestInterceptorsDeclaration.java

            self.intercepted = "getNonExistentProperty()-non-existent";
            return "nonExistent";
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertySetter
        public static void intercept_nonExistentProperty(
            @ParameterKind.Receiver InterceptorTestReceiver self,
            String value
        ) {
            self.intercepted = "setNonExistentProperty(String)-non-existent";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 08:15:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. docs/fr/docs/external-links.md

    # Articles et liens externes
    
    **FastAPI** possède une grande communauté en constante extension.
    
    Il existe de nombreux articles, outils et projets liés à **FastAPI**.
    
    Voici une liste incomplète de certains d'entre eux.
    
    !!! tip "Astuce"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top