Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,721 for extar (0.05 sec)

  1. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/buildSrc/build.gradle

    dependencies {
        implementation 'org.ow2.asm:asm:8.0.1'
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
                implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 462 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/buildSrc/build.gradle.kts

        implementation("org.ow2.asm:asm:8.0.1")
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
                implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 460 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    	extra := obj.Extra
    	if extra == nil {
    		extra = map[string]authorizationv1.ExtraValue{}
    	}
    	ret := map[string]interface{}{
    		"user":   obj.User,
    		"groups": obj.Groups,
    		"uid":    string(obj.UID),
    		"extra":  extra,
    	}
    	if obj.ResourceAttributes != nil {
    		ret["resourceAttributes"] = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyExtraInfoSpec.java

    import org.gradle.api.artifacts.ivy.IvyExtraInfo;
    
    /**
     * Represents a modifiable form of IvyExtraInfo so that "extra" info elements
     * can be configured on an Ivy publication.
     */
    public interface IvyExtraInfoSpec extends IvyExtraInfo {
    
        /**
         * Puts the specified extra element into the list of extra info elements.
         *
         * @param namespace The namespace of the element to add
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pyproject.toml

        "email_validator >=2.0.0",
        # Uvicorn with uvloop
        "uvicorn[standard] >=0.12.0",
        # TODO: this should be part of some pydantic optional extra dependencies
        # # Settings management
        # "pydantic-settings >=2.0.0",
        # # Extra Pydantic data types
        # "pydantic-extra-types >=2.0.0",
    ]
    
    all = [
        "fastapi-cli >=0.0.2",
        # # For the test client
        "httpx >=0.23.0",
        # For templates
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

                accept(usage, 'java-api', 'java-api-extra')
                accept(usage, 'java-api', 'java-runtime-extra')
                prefer(usage, 'java-api-extra')
            }
    
            def candidate1 = attributes(usage: 'java-api-extra', status: 'integration')
            def candidate2 = attributes(usage: 'java-runtime-extra', status: 'integration')
            def candidate3 = attributes(usage: 'java-api-extra', status: 'integration', bundling: value1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. fastapi/param_functions.py

                Any additional JSON schema data.
                """
            ),
        ] = None,
        **extra: Annotated[
            Any,
            Doc(
                """
                Include extra fields used by the JSON Schema.
                """
            ),
            deprecated(
                """
                The `extra` kwargs is deprecated. Use `json_schema_extra` instead.
                """
            ),
        ],
    ) -> Any:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    			Authenticated bool     `json:"authenticated"`
    			User          userInfo `json:"user"`
    			Audiences     []string `json:"audiences"`
    		}
    
    		var extra map[string][]string
    		if review.Status.User.Extra != nil {
    			extra = map[string][]string{}
    			for k, v := range review.Status.User.Extra {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  10. pkg/api/node/util_test.go

    			expected := sets.New[string](tc.expected...)
    			for _, missing := range sets.List[string](expected.Difference(actual)) {
    				t.Errorf("missing: %s", missing)
    			}
    			for _, extra := range sets.List[string](actual.Difference(expected)) {
    				t.Errorf("extra: %s", extra)
    			}
    		})
    
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top