Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 990 for fulfil (0.1 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-audit-full-rule-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 406 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirEnumEntryInitializerSymbol.kt

            }
        }
    
        /**
         * [KaFirEnumEntryInitializerSymbol] is the required return type instead of [KaEnumEntryInitializerSymbol] to fulfill return type
         * subtyping requirements, as [KaEnumEntryInitializerSymbol] is not a subtype of
         * [org.jetbrains.kotlin.analysis.api.symbols.KaAnonymousObjectSymbol]. (It cannot be a subtype in the general Analysis API because enum
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    	target.Initialize(wantDrainedNotification)
    	if wantDrainedNotification.stopCh == nil {
    		t.Errorf("expected stopCh to be initialized but found nil")
    	}
    }
    
    // WantExternalKubeInformerFactory is a test stub that fulfills the WantsExternalKubeInformerFactory interface
    type WantExternalKubeInformerFactory struct {
    	sf informers.SharedInformerFactory
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery_test.go

    				updateCh <- &model.PushRequest{Full: true}
    				updateCh <- &model.PushRequest{Full: true}
    				expect(0, 1)
    			},
    		},
    		{
    			name: "Should send full updates in batches, partial updates immediately",
    			test: func(updateCh chan *model.PushRequest, expect func(partial, full int32)) {
    				updateCh <- &model.PushRequest{Full: true}
    				updateCh <- &model.PushRequest{Full: true}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/build.gradle.kts

        integTestImplementation(libs.ant)
    
        integTestBinDistribution(project(":distributions-full"))
        integTestAllDistribution(project(":distributions-full"))
        integTestDocsDistribution(project(":distributions-full"))
        integTestSrcDistribution(project(":distributions-full"))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks.forkingIntegTest {
        systemProperty("gradleBuildBranch", buildBranch.get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    			tag.locale, exact2 = FromTag(t)
    			if !exact1 || !exact2 {
    				tag.full = tFull
    			}
    			return tag
    		}
    	}
    	lang, ok := FromTag(t)
    	tag.language = lang
    	tag.locale = lang
    	if !ok {
    		tag.full = t
    	}
    	return tag
    }
    
    // Tag returns an internal language Tag version of this tag.
    func (t Tag) Tag() language.Tag {
    	if t.full != nil {
    		return t.full.(language.Tag)
    	}
    	tag := t.language.Tag()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/io/fs/sub.go

    }
    
    func (f *subFS) Open(name string) (File, error) {
    	full, err := f.fullName("open", name)
    	if err != nil {
    		return nil, err
    	}
    	file, err := f.fsys.Open(full)
    	return file, f.fixErr(err)
    }
    
    func (f *subFS) ReadDir(name string) ([]DirEntry, error) {
    	full, err := f.fullName("read", name)
    	if err != nil {
    		return nil, err
    	}
    	dir, err := ReadDir(f.fsys, full)
    	return dir, f.fixErr(err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/workload.go

    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    	full := (isReq && w.Wildcard) || (!isReq && req.Full && len(req.ConfigsUpdated) == 0)
    
    	// Nothing to do
    	if len(addresses) == 0 && !full {
    		if isReq {
    			// We need to respond for requests, even if we have nothing to respond with
    			return make(model.Resources, 0), nil, model.XdsLogDetails{}, false, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. docs/tr/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 - Özellikler
    
    * Full **Docker** entegrasyonu (Docker based).
    * Docker Swarm Mode ile deployment.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/crypto/des/cipher.go

    }
    
    func (c *desCipher) BlockSize() int { return BlockSize }
    
    func (c *desCipher) Encrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/des: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/des: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/des: invalid buffer overlap")
    	}
    	cryptBlock(c.subkeys[:], dst, src, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top