Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for addSdk (0.14 sec)

  1. fastapi/applications.py

                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark this *path operation* as deprecated.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark this *path operation* as deprecated.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			initialPods:                  []*v1.Pod{pod},
    			actions: []action{
    				// This won't be added to inFlightEvents because no inFlightPods at this point.
    				{eventHappens: &PvcAdd},
    				{podPopped: pod},
    				// This gets added for the pod.
    				{eventHappens: &PvAdd},
    				// This doesn't get added because no plugin is interested in PvUpdate.
    				{eventHappens: &PvUpdate},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and Denied conditions...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    func hostsEntriesFromHostAliases(hostAliases []v1.HostAlias) []byte {
    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    	for _, hostAlias := range hostAliases {
    		buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostAlias.IP, strings.Join(hostAlias.Hostnames, "\t")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            conv_op.getLoc(), image_2d_type, conv_op.getLhs());
    
        // Transpose image to get it into NWHC form (where H is the added dim).
        SmallVector<int64_t, 4> image_permutation = {
            dnums.getInputBatchDimension(), dnums.getInputSpatialDimensions()[0],
            3,  // The trailing dim that we added.
            dnums.getInputFeatureDimension()};
        auto image_permutation_and_shape = GetPermutationAndTransposedShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    	includeProxyless := []match.Matcher{match.NotNaked, match.NotHeadless}
    
    	skipVM := t.Settings().Skip(echo.VM)
    	t.RunTraffic(TrafficTestCase{
    		name: "added header",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ .dstSvc }}
      http:
      - route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          NodeDef node_def,
          BuildXlaHostComputeNodeDef(call_node, host_compute_core, cluster_deps));
      TF_ASSIGN_OR_RETURN(Node * host_compute_node,
                          ReplaceNode(g, call_node, node_def));
      VLOG(4) << "Added HostCompute node: " << host_compute_node->DebugString();
    
      return host_compute_node;
    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    	}
    	// Expect sds_external cluster be added if credentialSocket exists
    	clusters := cg.Clusters(proxy)
    	xdstest.ValidateClusters(t, clusters)
    	g.Expect(xdstest.MapKeys(xdstest.ExtractClusters(clusters))).To(Equal([]string{
    		"BlackHoleCluster", "InboundPassthroughCluster", "PassthroughCluster", security.SDSExternalClusterName,
    	}))
    
    	// Expect no sds_external cluster be added if if credentialSocket does NOT exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    				processEvent(makeAddEvent(goodChildPod, deployment1apps)),
    				assertState(state{
    					graphNodes: []*node{
    						makeNode(goodChildPod, withOwners(deployment1apps)), // good child added
    						makeNode(deployment1apps, virtual)},                 // virtual parent added
    					pendingAttemptToDelete: []*node{
    						makeNode(deployment1apps, virtual), // virtual parent enqueued for delete attempt
    					},
    				}),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top