Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for projectFor (0.53 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    	return allErrs
    }
    
    func validateProjectionSources(projection *core.ProjectedVolumeSource, projectionMode *int32, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allPaths := sets.Set[string]{}
    
    	for i, source := range projection.Sources {
    		numSources := 0
    		srcPath := fldPath.Child("sources").Index(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the build directory of this project.  The build directory is the directory which all artifacts are
         * generated into.  The default value for the build directory is <code><i>projectDir</i>/build</code></p>
         *
         * @return The build directory. Never returns null.
         * @deprecated Use {@code getLayout().getBuildDirectory()} instead
         */
        @Deprecated
        File getBuildDir();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    					Secret: &core.SecretVolumeSource{
    						SecretName:  "my-secret",
    						DefaultMode: utilpointer.Int32(0644),
    					},
    				},
    			},
    		}, {
    			name: "valid Secret with projection and mode",
    			vol: core.Volume{
    				Name: "secret",
    				VolumeSource: core.VolumeSource{
    					Secret: &core.SecretVolumeSource{
    						SecretName: "my-secret",
    						Items: []core.KeyToPath{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			// symbols including "__stack_chk_fail_local" and a
    			// few others. Thus if we are doing internal linking
    			// and "__stack_chk_fail_local" is unresolved (most
    			// likely due to the use of -fstack-protector), try
    			// loading libc_nonshared.a to resolve it.
    			//
    			// On Alpine Linux (musl-based), the library providing
    			// this symbol is called libssp_nonshared.a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,2,opt,name=defaultMode"`
    }
    
    // Projection that may be projected along with other supported volume types
    type VolumeProjection struct {
    	// all types below are the supported types for projection into the same volume
    
    	// secret information about the secret data to project
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Specify whether the ConfigMap or its keys must be defined
    	// +optional
    	Optional *bool
    }
    
    // ServiceAccountTokenProjection represents a projected service account token
    // volume. This projection can be used to insert a service account token into
    // the pods runtime filesystem for use against APIs (Kubernetes API Server or
    // otherwise).
    type ServiceAccountTokenProjection struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ServiceAccountList
    }
    
    var map_ServiceAccountTokenProjection = map[string]string{
    	"":                  "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      repeated ServiceAccount items = 2;
    }
    
    // ServiceAccountTokenProjection represents a projected service account token
    // volume. This projection can be used to insert a service account token into
    // the pods runtime filesystem for use against APIs (Kubernetes API Server or
    // otherwise).
    message ServiceAccountTokenProjection {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ServiceAccountTokenProjection": {
            "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
            "properties": {
              "audience": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.model.internal.manage.projection.ManagedModelProjection$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ManagedModelProjection.java:0)
    Class <org.gradle.model.internal.manage.projection.ManagedModelProjection$2$State> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ManagedModelProjection.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top