Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 674 for enum1 (0.22 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/KtSymbolWithKind.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    
    
    public interface KaSymbolWithKind : KaSymbol {
        public val symbolKind: KaSymbolKind
    }
    
    public typealias KtSymbolWithKind = KaSymbolWithKind
    
    public enum class KaSymbolKind {
        TOP_LEVEL,
        CLASS_MEMBER,
        LOCAL,
        ACCESSOR,
        SAM_CONSTRUCTOR,
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 632 bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

    }
    
    message Locality {
      string region = 1;
      string zone = 2;
      string subzone = 3;
    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    	// but you can just you x-kubernetes-list-type:set to get around it :)
    	return false
    }
    
    func (s *Structural) Enum() []any {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	ret := make([]any, 0, len(s.Structural.ValueValidation.Enum))
    	for _, e := range s.Structural.ValueValidation.Enum {
    		ret = append(ret, e.Object)
    	}
    	return ret
    }
    
    func (s *Structural) Nullable() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		MultipleOf:       s.MultipleOf,
    		MaxProperties:    s.MaxProperties,
    		MinProperties:    s.MinProperties,
    		Required:         s.Required,
    		Not:              not,
    	}
    
    	for _, e := range s.Enum {
    		v.Enum = append(v.Enum, JSON{e})
    	}
    
    	for _, x := range s.AllOf {
    		clause, err := newNestedValueValidation(&x)
    		if err != nil {
    			return nil, err
    		}
    		v.AllOf = append(v.AllOf, *clause)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

                name().toLowerCase()
            }
        }
    
        enum ParameterKind {
            SIMPLE,
            SERVICE_REFERENCE,
            NAMED_SERVICE_REFERENCE;
    
            @Override
            String toString() {
                "${name().toLowerCase().replace('_', ' ')} parameter"
            }
        }
    
        enum InjectionStyle {
            PLUGIN,
            NEW_INSTANCE;
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/Destination.java

     */
    
    package org.gradle.tooling.events.test;
    
    import java.io.Serializable;
    
    /**
     * Enumerates possible output streams for {@link TestOutputEvent}.
     *
     * @since 6.0
     */
    public enum Destination implements Serializable {
    
        StdOut(0),
        StdErr(1);
    
        private final int code;
    
         Destination(int code) {
            this.code = code;
        }
    
        public int getCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/zz_generated.deepcopy.go

    		*out = new(int64)
    		**out = **in
    	}
    	if in.MultipleOf != nil {
    		in, out := &in.MultipleOf, &out.MultipleOf
    		*out = new(float64)
    		**out = **in
    	}
    	if in.Enum != nil {
    		in, out := &in.Enum, &out.Enum
    		*out = make([]JSON, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MaxProperties != nil {
    		in, out := &in.MaxProperties, &out.MaxProperties
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    enum:
                    - FAIL_CLOSE
                    - FAIL_OPEN
                    type: string
                  imagePullPolicy:
                    description: |-
                      The pull behaviour to be applied when fetching Wasm module by either OCI image or `http/https`.
    
                      Valid Options: IfNotPresent, Always
                    enum:
                    - UNSPECIFIED_POLICY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/SsoResponseType.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.sso;
    
    public enum SsoResponseType {
        METADATA, LOGOUT;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 707 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                    )
                );
            }
            throw new IllegalArgumentException(String.format("Cannot convert value '%s' of type '%s' to enum type '%s'",
                value, value.getClass().getName(), enumType.getName()));
        }
    
        @Nullable
        private static <T extends Enum<T>> T findEnumValue(Class<? extends T> enumType, final String literal) {
            List<? extends T> enumConstants = Arrays.asList(enumType.getEnumConstants());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top