Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 931 for Everything (0.21 sec)

  1. manifests/charts/istiod-remote/files/profile-ambient.yaml

          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
        enabled: true
    
    # Ztunnel doesn't use a namespace, so everything here is mostly for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (1)
  2. manifests/helm-profiles/ambient.yaml

          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
        enabled: true
    
    # Ztunnel doesn't use a namespace, so everything here is mostly for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 391 bytes
    - Viewed (0)
  3. docs/en/docs/advanced/sub-applications.md

    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    ### Top-level application
    
    First, create the main, top-level, **FastAPI** application, and its *path operations*:
    
    ```Python hl_lines="3  6-8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/kube/kclient/interfaces.go

    	// Get looks up an object by name and namespace. If it does not exist, nil is returned
    	Get(name, namespace string) T
    	// List looks up an object by namespace and labels.
    	// Use metav1.NamespaceAll and klabels.Everything() to select everything.
    	List(namespace string, selector klabels.Selector) []T
    }
    
    type Informer[T controllers.Object] interface {
    	Reader[T]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object/matcher_test.go

    	testcases := []struct {
    		name string
    
    		objectSelector *metav1.LabelSelector
    		attrs          admission.Attributes
    
    		expectCall bool
    	}{
    		{
    			name:           "empty object selector matches everything",
    			objectSelector: &metav1.LabelSelector{},
    			attrs:          admission.NewAttributesRecord(nil, nil, schema.GroupVersionKind{}, "", "name", schema.GroupVersionResource{}, "", admission.Create, &metav1.CreateOptions{}, false, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. build-logic/uber-plugins/src/main/kotlin/gradlebuild.distribution-module.gradle.kts

     * 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.
     */
    
    // Common configuration for everything that belongs to the Gradle distribution
    plugins {
        id("gradlebuild.java-library")
        id("gradlebuild.task-properties-validation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 19:12:11 UTC 2022
    - 792 bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                Usage consumerValue = details.getConsumerValue();
                Usage producerValue = details.getProducerValue();
                if (consumerValue == null) {
                    // consumer didn't express any preferences, everything fits
                    details.compatible();
                    return;
                }
                if (consumerValue.getName().equals(Usage.JAVA_API)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    	// Build a chain of reactors to act like a normal clientset; but log everything that is happening and don't change any state
    	client := fakeclientset.NewSimpleClientset()
    
    	// Build the chain of reactors. Order matters; first item here will be invoked first on match, then the second one will be evaluated, etc.
    	defaultReactorChain := []core.Reactor{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	defer cancel()
    	requestOpts := storage.ListOptions{
    		SendInitialEvents: ptr.To(true),
    		Recursive:         true,
    		Predicate: storage.SelectionPredicate{
    			Field:               fields.Everything(),
    			Label:               labels.Everything(),
    			AllowWatchBookmarks: true,
    		},
    	}
    	var expectedErr *apierrors.StatusError
    	if !errors.As(storage.NewTooLargeResourceVersionError(uint64(102), 1, 0), &expectedErr) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/ssa/_gen/README

    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
Back to top