Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for Replayed (0.15 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{
    								Name: "network-filter-should-not-be-replaced-not-match",
    							},
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_REPLACE,
    				Value:     buildPatchStruct(`{"name": "network-filter-replaced-should-not-be-applied"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    							}
    							return claim
    						},
    					},
    				},
    				postbind: result{
    					assumedClaim: reserve(structuredAllocatedImmediateClaim, podWithClaimName),
    				},
    			},
    		},
    		"delayed-allocation-structured-no-resources": {
    			pod:     podWithClaimName,
    			claims:  []*resourcev1alpha2.ResourceClaim{pendingDelayedClaim},
    			classes: []*resourcev1alpha2.ResourceClass{structuredResourceClass},
    			want: want{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    LogicalResult RegionResourceHoister::HoistResourcesOutOfWhileRegion(
        TF::WhileRegionOp op) {
      // For WhileRegion, post canonicalization all resource used within the
      // body and condition regions are replaced with captured values, so we do not
      // need to take into account the body and condition region arguments.
      RegionResourceHoister hoister(op);
    
      if (failed(hoister.Analyze())) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

    # Downloaded from https://github.com/metallb/metallb/raw/v0.13.12/config/manifests/metallb-native.yaml
    # With quay.io hub replaced with gcr.io/istio-testing
    # And probes tuned to startup faster
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        pod-security.kubernetes.io/audit: privileged
        pod-security.kubernetes.io/enforce: privileged
        pod-security.kubernetes.io/warn: privileged
      name: metallb-system
    ---
    apiVersion: apiextensions.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def supplier = Stub(Supplier)
    
            collection.from(collection1, collection2)
    
            when:
            def replaced = collection.replace(collection1, supplier)
    
            then:
            replaced != collection
            replaced.sourceCollections == [replaced1, collection2]
    
            1 * collection1.replace(collection1, supplier) >> replaced1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			claim := state.claims[index]
    			// Deallocation makes more sense for claims with
    			// delayed allocation. Claims with immediate allocation
    			// would just get allocated again for a random node,
    			// which is unlikely to help the pod.
    			//
    			// Claims with builtin controller are handled like
    			// claims with delayed allocation.
    			if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `StartParameter.taskOutputCacheEnabled` property has been replaced by link:{javadocPath}/org/gradle/StartParameter.html#setBuildCacheEnabled-boolean-[StartParameter.setBuildCacheEnabled(boolean)].
     * The Visual Studio integration now only <<#rel4.6:visual_studio_single_solution,configures a single solution for all components in a build>>.
     * Gradle has replaced HttpClient 4.4.1 with version 4.5.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Configuration for Istio Ambient.
      CNIAmbientConfig ambient = 21;
    
      // Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
      // NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
      // invoked in a cluster using the Multus CNI plugin.
      string provider = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[project_builddir]]
    ==== Deprecated `Project.buildDir` is to be replaced by `Project.layout.buildDirectory`
    
    The `Project.buildDir` property is deprecated.
    It uses eager APIs and has ordering issues if the value is read in build logic and then later modified.
    It could result in outputs ending up in different locations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

            # use kubectl to create dns addon
            if ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" --namespace=kube-system create -f dns.yaml ; then
                echo "${DNS_ADDON} addon successfully deployed."
            else
    		echo "Something is wrong with your DNS input"
    		cat dns.yaml
    		exit 1
            fi
            rm dns.yaml
        fi
    }
    
    function start_nodelocaldns {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top