Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for projected (0.16 sec)

  1. pkg/api/pod/util_test.go

    							Name: "Spec.Volumes[*].VolumeSource.FlexVolume.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					Projected: &api.ProjectedVolumeSource{
    						Sources: []api.VolumeProjection{{
    							Secret: &api.SecretProjection{
    								LocalObjectReference: api.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].Secret"}}}}}}}, {
    				VolumeSource: api.VolumeSource{
    					RBD: &api.RBDVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    		*out = new(PhotonPersistentDiskVolumeSource)
    		**out = **in
    	}
    	if in.Projected != nil {
    		in, out := &in.Projected, &out.Projected
    		*out = new(ProjectedVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    		*out = new(PhotonPersistentDiskVolumeSource)
    		**out = **in
    	}
    	if in.Projected != nil {
    		in, out := &in.Projected, &out.Projected
    		*out = new(ProjectedVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    protected int bufStart; protected int bufEnd; protected int pos; protected int posStart; protected int posEnd; protected char[] pc; protected int pcStart; protected int pcEnd; protected boolean usePC; protected boolean seenStartTag; protected boolean seenEndTag; protected boolean pastEndTag; protected boolean seenAmpersand; protected boolean seenMarkup; protected boolean seenDocdecl; protected boolean tokenize; protected String text; protected String entityRefName; protected String xmlDeclVersion; protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        }
    
        @Override
        protected InstantiationStrategy createUsingConstructor(Constructor<?> constructor) {
            return new InvokeConstructorStrategy(constructor, getRoleHandler());
        }
    
        @Override
        protected InstantiationStrategy createForSerialization(Class<?> generatedType, Class<?> baseClass) {
            Constructor<?> constructor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <description>
                <![CDATA[
                The URL to the project's homepage.
                <p><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                project's {@code child.project.url.inherit.append.path="false"}</p>
                ]]>
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public Iterator<ReferenceEntry<K, V>> iterator() {
          return new AbstractSequentialIterator<ReferenceEntry<K, V>>(peek()) {
            @CheckForNull
            @Override
            protected ReferenceEntry<K, V> computeNext(ReferenceEntry<K, V> previous) {
              ReferenceEntry<K, V> next = previous.getNextInWriteQueue();
              return (next == head) ? null : next;
            }
          };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public Iterator<ReferenceEntry<K, V>> iterator() {
          return new AbstractSequentialIterator<ReferenceEntry<K, V>>(peek()) {
            @CheckForNull
            @Override
            protected ReferenceEntry<K, V> computeNext(ReferenceEntry<K, V> previous) {
              ReferenceEntry<K, V> next = previous.getNextInWriteQueue();
              return (next == head) ? null : next;
            }
          };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top