Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 816 for Initial (0.39 sec)

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

    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.
    
    GitHub Repository: <a href="https://github.com/tiangolo/full-stack-fastapi-template" class="external-link" target="_blank">Full Stack FastAPI Template</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.go

    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    		head = make([]byte, total)
    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // deriveCounter computes the initial GCM counter state from the given nonce.
    func (g *gcmAsm) deriveCounter(counter *[gcmBlockSize]byte, nonce []byte) {
    	if len(nonce) == gcmStandardNonceSize {
    		copy(counter[:], nonce)
    		counter[gcmBlockSize-1] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/vm_test.go

    					Namespace:      apps.Namespace,
    					Service:        "auto-vm",
    					Ports:          ports.All(),
    					DeployAsVM:     true,
    					AutoRegisterVM: true,
    				}).BuildOrFail(t)
    			t.NewSubTest("initial registration").Run(func(t framework.TestContext) {
    				retry.UntilSuccessOrFail(t, func() error {
    					result, err := client.Call(echo.CallOptions{
    						To:    autoVM,
    						Count: 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pkg/kube/krt/collection.go

    		if !c.Synced().WaitUntilSynced(h.stop) {
    			return
    		}
    		// Now, register our handler. This will call Add() for the initial state
    		// Locking here is tricky. We want to make sure we don't get duplicate events.
    		// When we run RegisterBatch, it will trigger events for the initial state. However, other events could trigger
    		// while we are processing these.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_statements.txt

    # lead to cache lookup failures, which manifest as test failures here.
    # To avoid such flakes, use a separate isolated GOCACHE for this test.
    env GOCACHE=$WORK/cache
    
    # Initial run with simple coverage.
    go test -cover ./pkg1 ./pkg2 ./pkg3 ./pkg4
    [!GOEXPERIMENT:coverageredesign] stdout 'pkg1	\[no test files\]'
    [GOEXPERIMENT:coverageredesign] stdout 'pkg1		coverage: 0.0% of statements'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    	//
    	// note that we decided to extend the event
    	// struct field to eliminate contention
    	// between startWatching and processEvent
    	isInitialEventsEndBookmark bool
    }
    
    // parseKV converts a KeyValue retrieved from an initial sync() listing to a synthetic isCreated event.
    func parseKV(kv *mvccpb.KeyValue) *event {
    	return &event{
    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    		rev:       kv.ModRevision,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    )
    
    const (
    	DefaultStreamCreationTimeout = 30 * time.Second
    
    	// The SPDY subprotocol "channel.k8s.io" is used for remote command
    	// attachment/execution. This represents the initial unversioned subprotocol,
    	// which has the known bugs https://issues.k8s.io/13394 and
    	// https://issues.k8s.io/13395.
    	StreamProtocolV1Name = "channel.k8s.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/hash/hash.go

    	io.Writer
    
    	// Sum appends the current hash to b and returns the resulting slice.
    	// It does not change the underlying hash state.
    	Sum(b []byte) []byte
    
    	// Reset resets the Hash to its initial state.
    	Reset()
    
    	// Size returns the number of bytes Sum will return.
    	Size() int
    
    	// BlockSize returns the hash's underlying block size.
    	// The Write method must be able to accept any amount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	}
    
    	// Wait for initial cache sync of policies and informers before reconciling
    	// any
    	if !cache.WaitForNamedCacheSync(fmt.Sprintf("%T", s), ctx.Done(), s.UpstreamHasSynced) {
    		err := ctx.Err()
    		if err == nil {
    			err = fmt.Errorf("initial cache sync for %T failed", s)
    		}
    		return err
    	}
    
    	s.ctx = ctx
    
    	// Perform initial policy compilation after initial list has finished
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/OfflineSourceDependencyIntegrationTest.groovy

                gradle.rootProject {
                    group = 'test'
                    configurations {
                        create('default')
                    }
                }
            """
            repo.commit('initial version')
            repo.createLightWeightTag('1.2')
        }
    
        @ToBeFixedForConfigurationCache
        def "uses previous checkout when offline"() {
            given:
            repo.expectListVersions()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top