Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 990 for fulfil (0.12 sec)

  1. docs/de/docs/project-generation.md

    ## Full Stack FastAPI PostgreSQL
    
    GitHub: <a href="https://github.com/tiangolo/full-stack-fastapi-postgresql" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-fastapi-postgresql</a>
    
    ### Full Stack FastAPI PostgreSQL – Funktionen
    
    * Vollständige **Docker**-Integration (Docker-basiert).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/traceregion.go

    	if block != nil {
    		r := block.off.Add(n)
    		if r <= uintptr(len(block.data)) {
    			unlock(&a.lock)
    			return (*notInHeap)(unsafe.Pointer(&block.data[r-n]))
    		}
    
    		// Add the existing block to the full list.
    		block.next = a.full
    		a.full = block
    	}
    
    	// Allocate a new block.
    	block = (*traceRegionAllocBlock)(sysAlloc(unsafe.Sizeof(traceRegionAllocBlock{}), &memstats.other_sys))
    	if block == nil {
    		throw("traceRegion: out of memory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ecds_test.go

    			watchedResources: []string{"extenstions.istio.io/wasmplugin/default.default-plugin-wrong-sec-type"},
    			wantExtensions:   sets.String{"extenstions.istio.io/wasmplugin/default.default-plugin-wrong-sec-type": {}},
    			wantSecrets:      sets.String{},
    		},
    		{
    			name:           "root_and_default",
    			proxyNamespace: "default",
    			request:        &model.PushRequest{Full: true},
    			watchedResources: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. docs/en/docs/project-generation.md

    # Full Stack FastAPI Template
    
    Templates, while typically come with a specific setup, are designed to be flexible and customizable. This allows you to modify and adapt them to your project's requirements, making them an excellent starting point. 🏁
    
    You can use this template to get started, as it includes a lot of the initial set up, security, database and some API endpoints already done for you.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/lds.go

    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    		// Otherwise, only handle full pushes (skip endpoint-only updates)
    		if !req.Full {
    			return false
    		}
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/crypto/aes/cipher.go

    }
    
    func (c *aesCipher) BlockSize() int { return BlockSize }
    
    func (c *aesCipher) Encrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/aes: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/aes: invalid buffer overlap")
    	}
    	encryptBlockGo(c.enc[:c.l], dst, src)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds_test.go

    			resources: []string{"kubernetes://generic"},
    			request:   &model.PushRequest{Full: true},
    			expect:    map[string]Expected{},
    		},
    		{
    			name:      "multiple",
    			proxy:     &model.Proxy{VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"}, Type: model.Router},
    			resources: allResources,
    			request:   &model.PushRequest{Full: true},
    			expect: map[string]Expected{
    				"kubernetes://generic": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/runtime/mgcwork.go

    }
    
    // putfull puts the workbuf on the work.full list for the GC.
    // putfull accepts partially full buffers so the GC can avoid competing
    // with the mutators for ownership of partially full buffers.
    //
    //go:nowritebarrier
    func putfull(b *workbuf) {
    	b.checknonempty()
    	work.full.push(&b.node)
    }
    
    // trygetfull tries to get a full or partially empty workbuffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_getters.go

    )
    
    // getRootDir returns the full path to the directory under which kubelet can
    // store data.  These functions are useful to pass interfaces to other modules
    // that may need to know where to write data without getting a whole kubelet
    // instance.
    func (kl *Kubelet) getRootDir() string {
    	return kl.rootDirectory
    }
    
    // getPodLogsDir returns the full path to the directory that kubelet can use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_test.go

    	})
    	ads := s.Connect(nil, nil, watchAll)
    	t.Run("Full Push", func(t *testing.T) {
    		s.Discovery.Push(&model.PushRequest{Full: true})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("Incremental Push with updated services", func(t *testing.T) {
    		ads.WaitClear()
    		s.Discovery.Push(&model.PushRequest{
    			Full:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top