Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 214 for facets (0.27 sec)

  1. docs/fr/docs/deployment/versions.md

    target="_blank">versionnage sémantique</a>.
    
    Vous pouvez créer des applications de production avec **FastAPI** dès maintenant (et vous le faites probablement depuis un certain temps), vous devez juste vous assurer que vous utilisez une version qui fonctionne correctement avec le reste de votre code.
    
    ## Épinglez votre version de `fastapi`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. pkg/controller/controller_ref_manager_test.go

    			controller.Namespace = metav1.NamespaceDefault
    			controller.UID = types.UID(controllerUID)
    			pod1 := newPod("pod1", productionLabel, nil)
    			pod2 := newPod("pod2", productionLabel, nil)
    			pod2.Namespace = "fakens"
    			return test{
    				name: "Controller does not claim pods of different namespace",
    				manager: NewPodControllerRefManager(&FakePodControl{},
    					&controller,
    					productionLabelSelector,
    					controllerKind,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    	caCerts, err := certutil.CertsFromFile(certificatePath)
    	if err != nil {
    		return nil, errors.Wrapf(err, "failed to load existing certificate %s", rw.baseName)
    	}
    
    	// Safely pick the first one because the sender's certificate must come first in the list.
    	// For details, see: https://www.rfc-editor.org/rfc/rfc4346#section-7.4.2
    	rw.caCert = caCerts[0]
    
    	// get current context
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestWithProcFs(t *testing.T) {
    	n := NewPodNetnsProcFinder(fakeFs())
    	pod := &corev1.Pod{ObjectMeta: metav1.ObjectMeta{
    		Name:      "foo",
    		Namespace: "bar",
    		UID:       types.UID("863b91d4-4b68-4efa-917f-4b560e3e86aa"),
    	}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_ppc64le.go

    	Rto            uint32
    	Ato            uint32
    	Snd_mss        uint32
    	Rcv_mss        uint32
    	Unacked        uint32
    	Sacked         uint32
    	Lost           uint32
    	Retrans        uint32
    	Fackets        uint32
    	Last_data_sent uint32
    	Last_ack_sent  uint32
    	Last_data_recv uint32
    	Last_ack_recv  uint32
    	Pmtu           uint32
    	Rcv_ssthresh   uint32
    	Rtt            uint32
    	Rttvar         uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/example_test.go

    	// .  .  .  }
    	// .  .  .  block scope {
    	// .  .  .  .  block scope {
    	// .  .  .  .  .  var x int
    	// .  .  .  .  }
    	// .  .  .  }
    	// .  .  }
    	// .  }
    	// }
    }
    
    // ExampleInfo prints various facts recorded by the type checker in a
    // types2.Info struct: definitions of and references to each named object,
    // and the type, value, and mode of every expression in the package.
    func ExampleInfo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/SystemDefaultSSLContextFactory.java

            return System.getProperty("java.home") + File.separator + "lib" + File.separator + "security";
        }
    
        private static String getDefaultTrustStore(){
            return getDefaultSecurityPath() + File.separator + "cacerts";
        }
    
        private static String getDefaultJsseTrustStore(){
            return getDefaultSecurityPath() + File.separator + "jssecacerts";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/types/objectpath
    golang.org/x/tools/go/types/typeutil
    golang.org/x/tools/internal/aliases
    golang.org/x/tools/internal/analysisinternal
    golang.org/x/tools/internal/bisect
    golang.org/x/tools/internal/facts
    golang.org/x/tools/internal/stdlib
    golang.org/x/tools/internal/typeparams
    golang.org/x/tools/internal/typesinternal
    golang.org/x/tools/internal/versions
    # rsc.io/markdown v0.0.0-20240306144322-0bf8f97ee8ef
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    // Represents a view of a set of mlir Operations that form a subgraph of the
    // entire Module's DAG. `Subgraph` can be thought of as segment of sequential
    // Operations within a func definition. Additional facts:
    //    1. Subgraphs are restricted to a single Block. They do not span
    //        branching instructions. Thus the subgraph is a simple 1-degree path.
    //    2. All Operations in a subgraph belong to the same block in a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_loong64.go

    	Rto            uint32
    	Ato            uint32
    	Snd_mss        uint32
    	Rcv_mss        uint32
    	Unacked        uint32
    	Sacked         uint32
    	Lost           uint32
    	Retrans        uint32
    	Fackets        uint32
    	Last_data_sent uint32
    	Last_ack_sent  uint32
    	Last_data_recv uint32
    	Last_ack_recv  uint32
    	Pmtu           uint32
    	Rcv_ssthresh   uint32
    	Rtt            uint32
    	Rttvar         uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
Back to top