Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 647 for assign_id (0.79 sec)

  1. docs/em/docs/tutorial/path-operation-configuration.md

        ```
    
    ## 📛 ⚪️➡️ #️⃣
    
    📛 😑 📏 &amp; 📔 💗 ⏸, 👆 💪 📣 *➡ 🛠️* 📛 🔢 <abbr title="a multi-line string as the first expression inside a function (not assigned to any variable) used for documentation"> #️⃣ </abbr> &amp; **FastAPI** 🔜 ✍ ⚫️ ⚪️➡️ 📤.
    
    👆 💪 ✍ <a href="https://en.wikipedia.org/wiki/Markdown" class="external-link" target="_blank">✍</a> #️⃣ , ⚫️ 🔜 🔬 &amp; 🖥 ☑ (✊ 🔘 🏧 #️⃣ 📐).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/compress/flate/huffman_code.go

    	var total int
    	for i, f := range freq {
    		if f != 0 {
    			total += int(f) * int(h.codes[i].len)
    		}
    	}
    	return total
    }
    
    const maxBitsLimit = 16
    
    // bitCounts computes the number of literals assigned to each bit size in the Huffman encoding.
    // It is only called when list.length >= 3.
    // The cases of 0, 1, and 2 literals are handled by special case code.
    //
    // list is an array of the literals with non-zero frequencies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/riscv64/asm.go

    	}
    
    	// Generate a local text symbol for each relocation target, as the
    	// R_RISCV_PCREL_LO12_* relocations generated by elfreloc1 need it.
    	if ctxt.Textp == nil {
    		log.Fatal("genSymsLate called before Textp has been assigned")
    	}
    	var hi20Syms []loader.Sym
    	for _, s := range ctxt.Textp {
    		relocs := ldr.Relocs(s)
    		for ri := 0; ri < relocs.Count(); ri++ {
    			r := relocs.At(ri)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/taint_eviction_test.go

    		expectDelete bool
    	}{
    		{
    			description: "Creating Node matching already assigned Pod",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    			node:         testutil.NewNode("node1"),
    			expectPatch:  false,
    			expectDelete: false,
    		},
    		{
    			description: "Creating tainted Node matching already assigned Pod",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. pkg/registry/core/service/portallocator/controller/repair.go

    				c.recorder.Eventf(svc, nil, corev1.EventTypeWarning, "PortAlreadyAllocated", "PortAllocation", "Port %d was assigned to multiple services; please recreate service", port)
    				runtime.HandleError(fmt.Errorf("the node port %d for service %s/%s was assigned to multiple services; please recreate", port, svc.Name, svc.Namespace))
    			case err.(*portallocator.ErrNotInRange):
    				// port is out of range, reallocate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/types.go

    	GetCapacity() (v1.ResourceList, v1.ResourceList, []string)
    	GetWatcherHandler() cache.PluginHandler
    
    	// GetDevices returns information about the devices assigned to pods and containers
    	GetDevices(podUID, containerName string) ResourceDeviceInstances
    
    	// GetAllocatableDevices returns information about all the devices known to the manager
    	GetAllocatableDevices() ResourceDeviceInstances
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-operation-configuration.md

    ## Description from docstring
    
    As descriptions tend to be long and cover multiple lines, you can declare the *path operation* description in the function <abbr title="a multi-line string as the first expression inside a function (not assigned to any variable) used for documentation">docstring</abbr> and **FastAPI** will read it from there.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	}{
    		// [Unit test set 15] - retroactive storage class assignment tests
    		{
    			storageClasses: []*storagev1.StorageClass{},
    			tests: []controllerTest{
    				{
    					name:            "15-1 - pvc storage class is not assigned retroactively if there are no default storage classes",
    					initialVolumes:  novolumes,
    					expectedVolumes: novolumes,
    					initialClaims:   newClaimArray("claim15-1", "uid15-1", "1Gi", "", v1.ClaimPending, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/runtime/os_freebsd.go

    // Undocumented numbers from FreeBSD's lib/libc/gen/sysctlnametomib.c.
    const (
    	_CTL_QUERY     = 0
    	_CTL_QUERY_MIB = 3
    )
    
    // sysctlnametomib fill mib with dynamically assigned sysctl entries of name,
    // return count of effected mib slots, return 0 on error.
    func sysctlnametomib(name []byte, mib *[_CTL_MAXNAME]uint32) uint32 {
    	oid := [2]uint32{_CTL_QUERY, _CTL_QUERY_MIB}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. pkg/controller/podgc/gc_controller.go

    	if quit {
    		return
    	}
    	// Delete orphaned pods
    	for _, pod := range pods {
    		if !deletedNodesNames.Has(pod.Spec.NodeName) {
    			continue
    		}
    		logger.V(2).Info("Found orphaned Pod assigned to the Node, deleting", "pod", klog.KObj(pod), "node", klog.KRef("", pod.Spec.NodeName))
    		condition := &v1.PodCondition{
    			Type:    v1.DisruptionTarget,
    			Status:  v1.ConditionTrue,
    			Reason:  "DeletionByPodGC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top