Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 781 for extr6 (0.71 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def 'copies files and removes extra files from destDir'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                file 'extra.txt'
                extraDir { file 'extra.txt' }
                dir1 {
                    file 'extra.txt'
                    extraDir { file 'extra.txt' }
                }
                someOtherEmptyDir {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                .artifact(name: "test-extra")
                .publish()
            def module2 = ivyHttpRepo.module("org.gradle", "other", "preview-1").publish()
    
            and:
            buildFile << """
    repositories { ivy { url "${ivyHttpRepo.uri}" } }
    configurations { compile }
    dependencies {
        compile ("org.gradle:test:1.45") {
            artifact {
                name = 'test-extra'
                type = 'jar'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/completion.go

    type completedConfig struct {
    	Generic genericapiserver.CompletedConfig
    	*Extra
    }
    
    // CompletedConfig embeds a private pointer that cannot be instantiated outside of this package
    type CompletedConfig struct {
    	*completedConfig
    }
    
    func (c *Config) Complete() CompletedConfig {
    	cfg := completedConfig{
    		c.Generic.Complete(c.VersionedInformers),
    		&c.Extra,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:13:43 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/crypto/tls/ticket.go

    		!unmarshalCertificate(&s, &cert) {
    		return nil, errors.New("tls: invalid session encoding")
    	}
    	for !extra.Empty() {
    		var e []byte
    		if !readUint24LengthPrefixed(&extra, &e) {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		ss.Extra = append(ss.Extra, e)
    	}
    	switch extMasterSecret {
    	case 0:
    		ss.extMasterSecret = false
    	case 1:
    		ss.extMasterSecret = true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "duplicate extra mapping key",
    			in: api.ClaimMappings{
    				Username: api.PrefixedClaimOrExpression{Expression: "claims.username"},
    				Groups:   api.PrefixedClaimOrExpression{Expression: "claims.groups"},
    				Extra: []api.ExtraMapping{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
                    }
                    task fooJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. fastapi/params.py

            deprecated: Union[deprecated, str, bool, None] = None,
            include_in_schema: bool = True,
            json_schema_extra: Union[Dict[str, Any], None] = None,
            **extra: Any,
        ):
            if example is not _Unset:
                warnings.warn(
                    "`example` has been deprecated, please use `examples` instead",
                    category=DeprecationWarning,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_git_missing_tree.txt

    cd $WORK/repo
    exec git init
    exec git add go.mod main.go
    exec git commit -m 'initial commit'
    
    env GIT_COMMITTER_DATE=2024-01-30T10:53:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:53:00+08:00
    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    # Assume the tree object from initial commit is not available (e.g. partial clone)
    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    // descriptive error for invalid events.
    func (it *oldTraceConverter) next() (Event, error) {
    	if len(it.extra) > 0 {
    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    		}
    		// Two events aren't allowed to fall on the same timestamp in the new API,
    		// but this may happen when we produce EvGoStatus events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/options/constant.go

    	// APIServerCertSANs flag sets extra Subject Alternative Names (SANs) to use for the API Server serving certificate. Can be both IP addresses and DNS names.
    	APIServerCertSANs = "apiserver-cert-extra-sans"
    
    	// APIServerExtraArgs flag sets a extra flags to pass to the API Server or override default ones in form of <flagname>=<value>.
    	APIServerExtraArgs = "apiserver-extra-args"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top