Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 172 for inaccessible (0.28 sec)

  1. pilot/pkg/xds/endpoints/ep_filters_test.go

    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    					{Address: "2.2.2.20", Weight: 6},
    					{Address: "2.2.2.21", Weight: 6},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 42,
    			},
    		},
    		wantWorkloadMetadata: []string{
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  4. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            "String"     | "\"hello\""   | "+ \"world\""
            "int"        | "1"           | "+ 2"
            "boolean"    | "true"        | "& false"
        }
    
        def "collects constants from accessible static fields as accessible dependents"() {
            given:
            String clazz = """
    class A {
        static final int STATIC_FINAL_FIELD = Constant1.CONSTANT1;
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

        /**
         * Populate the Map of direct hits. These
         * are taken from all the public methods
         * that our class provides.
         */
        private void populateMethodCache() {
            // get all publicly accessible methods
            Method[] methods = getAccessibleMethods(clazz);
    
            // map and cache them
            for (Method method : methods) {
                // now get the 'public method', the method declared by a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
      //
      // Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
      // expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
      //
      // Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
      // expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

            exceptionClass);
        checkArgument(
            hasConstructorUsableByGetChecked(exceptionClass),
            "Futures.getChecked exception type (%s) must be an accessible class with an accessible "
                + "constructor whose parameters (if any) must be of type String and/or Throwable",
            exceptionClass);
      }
    
      private FuturesGetChecked() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

    import kotlin.reflect.KClass
    import kotlin.reflect.KFunction
    import kotlin.reflect.KProperty
    import kotlin.reflect.KVisibility
    import kotlin.reflect.full.*
    import kotlin.reflect.jvm.isAccessible
    
    public class DebugSymbolRenderer(
        public val renderExtra: Boolean = false,
        public val renderTypeByProperties: Boolean = false,
        public val renderExpandedTypes: Boolean = false,
    ) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            int kindCode;
            String kind = accessRule.getKind();
            switch (kind) {
                case "accessible":
                case "0":
                    kindCode = 0;
                    break;
                case "nonaccessible":
                case "1":
                    kindCode = 1;
                    break;
                case "discouraged":
                case "2":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top