Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 673 for extr6 (1.84 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

                    from components.java
                    organisation "extra.org"
                    module "extra-module"
                    revision "extra"
                }
                extra(IvyPublication) {
                    organisation "extra.org"
                    module "extra-module-2"
                    revision "extra"
                }
            }
        }
    }
    """)
    
            when:
            fails "publish"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/extraProperties/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    val springVersion by extra("3.1.0.RELEASE")
    val emailNotification by extra { "******@****.***" }
    
    sourceSets.all { extra["purpose"] = null }
    
    sourceSets {
        main {
            extra["purpose"] = "production"
        }
        test {
            extra["purpose"] = "test"
        }
        create("plugin") {
            extra["purpose"] = "production"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 822 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	var extra map[string]authenticationv1beta1.ExtraValue
    	if u.Extra != nil {
    		extra = make(map[string]authenticationv1beta1.ExtraValue, len(u.Extra))
    		for k, v := range u.Extra {
    			extra[k] = authenticationv1beta1.ExtraValue(v)
    		}
    	}
    	return authenticationv1beta1.UserInfo{
    		Username: u.Username,
    		UID:      u.UID,
    		Groups:   u.Groups,
    		Extra:    extra,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	}
    
    	if sa.PodName != "" && sa.PodUID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[PodNameKey] = []string{sa.PodName}
    		info.Extra[PodUIDKey] = []string{sa.PodUID}
    	}
    	if sa.CredentialID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[CredentialIDKey] = []string{sa.CredentialID}
    	}
    	if sa.NodeName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_constraints.txt

    stdout '^$'
    
    # Enabling a tag should include files that require it.
    go list -tags=extra -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go extra.go $'
    go list -tags=extra -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^extra $'
    
    # Packages that require a tag should not be listed unless the tag is on.
    ! go list ./tagonly
    go list -tags=extra ./tagonly
    stdout m/tagonly
    
    -- go.mod --
    module m
    
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/constdecl.go

    const _ /* ERROR "missing init expr for _" */
    const _ = 1, 2 /* ERROR "extra init expr 2" */
    
    const _ /* ERROR "missing init expr for _" */ int
    const _ int = 1, 2 /* ERROR "extra init expr 2" */
    
    const (
    	_ /* ERROR "missing init expr for _" */
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    
    	_ /* ERROR "missing init expr for _" */ int
    	_ int = 1, 2 /* ERROR "extra init expr 2" */
    )
    
    const (
    	_ = 1
    	_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. tests/test_openapi_query_parameter_extension.py

            "parameters": [
                {
                    "required": False,
                    "schema": {"title": "Extra Param 1"},
                    "name": "extra_param_1",
                    "in": "query",
                },
                {
                    "required": True,
                    "schema": {"title": "Extra Param 2"},
                    "name": "extra_param_2",
                    "in": "query",
                },
            ]
        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller_test.go

    			cm:   defaultConfigMap(t, []string{"user-val"}, []string{"group-val"}, []string{"extra-val"}, []string{"names-val"}),
    			expectedHeader: expectedHeadersHolder{
    				usernameHeaders:     []string{"user-val"},
    				groupHeaders:        []string{"group-val"},
    				extraHeaderPrefixes: []string{"extra-val"},
    				allowedClientNames:  []string{"names-val"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesPostProcessor.java

            CallableOwnerInfo owner = new CallableOwnerInfo(extra.ownerType, false);
            String methodName = extra.methodName;
            return new CallableInfoImpl(CallableKindInfo.STATIC_METHOD, owner, methodName, originalInfo.getReturnType(), modifiedParameters(originalInfo.getParameters()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    plugins {
        signing
    }
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
Back to top