Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Inaccessible (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   request resource.
      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object. No other metadata properties are accessible.
      //
      // Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
      // Accessible property names are escaped according to the following rules when accessed in the expression:
      // - '__' escapes to '__underscores__'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   request resource.
    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object. No other metadata properties are accessible.
    	//
    	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    	// Accessible property names are escaped according to the following rules when accessed in the expression:
    	// - '__' escapes to '__underscores__'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>The tasks of the project.  A task is accessible by using its name as a property name.  The properties of this
     * scope are read-only. For example, a task called <code>compile</code> is accessible as the <code>compile</code>
     * property.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    					resolution: v1alpha3.ServiceEntry_STATIC,
    					to:         apps.MeshExternal,
    				},
    				// TODO dns cases
    			}
    
    			// Configure a gateway with one app as the destination to be accessible through the ingress
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": apps.Captured[0].Config().Service,
    			}, `apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			if !refs.BackendAllowed(k, to.Name, *toNs, ns) {
    				return &istio.Destination{}, &ConfigError{
    					Reason:  InvalidDestinationPermit,
    					Message: fmt.Sprintf("backendRef %v/%v not accessible to a %s in namespace %q (missing a ReferenceGrant?)", to.Name, *toNs, k.Kind, ns),
    				}
    			}
    		}
    	}
    
    	namespace := ptr.OrDefault((*string)(to.Namespace), ns)
    	var invalidBackendErr *ConfigError
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs);
    }
    
    // TODO(b/168035831): Model db_uri read/write.
    def TF_CreateSummaryDbWriterOp : TF_Op<"CreateSummaryDbWriter", []> {
      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	//
    	// For a non-interface type T or *T, the returned Method's Type and Func
    	// fields describe a function whose first argument is the receiver,
    	// and only exported methods are accessible.
    	//
    	// For an interface type, the returned Method's Type field gives the
    	// method signature, without a receiver, and the Func field is nil.
    	//
    	// Methods are sorted in lexicographic order.
    	Method(int) Method
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    	// span has malloc headers.
    	minSizeForMallocHeader = goarch.PtrSize * ptrBits
    )
    
    // heapBitsInSpan returns true if the size of an object implies its ptr/scalar
    // data is stored at the end of the span, and is accessible via span.heapBits.
    //
    // Note: this works for both rounded-up sizes (span.elemsize) and unrounded
    // type sizes because minSizeForMallocHeader is guaranteed to be at a size
    // class boundary.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	serviceNoLocalEndpointsExternal sets.Set[string]
    	// lbNoNodeAccessIPPortProtocolEntries represents the set of loadBalancers IP + Port + Protocol that should not be accessible from K8s nodes
    	// We cannot directly restrict LB access from node using LoadBalancerSourceRanges, we need to install
    	// additional iptables rules.
    	// (ref: https://github.com/kubernetes/kubernetes/issues/119656)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.deletePod(t, "pod4")
    	s.assertAddresses(t, "", "pod1", "pod2", "pod3", "svc1")
    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "svc1")
    	s.assertAddresses(t, s.addrXdsName("127.0.0.4")) // Should not be accessible anymore
    	s.assertAddresses(t, s.podXdsName("pod4"))
    	s.assertEvent(t, s.podXdsName("pod4"))
    	s.clearEvents()
    
    	// Update Service to have a more restrictive label selector
    	s.addService(t, "svc1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top