Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for Mutated (0.41 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			}
    		}
    		return false
    	})
    }
    
    // findVersionsWithUnchangedSchemas finds each version that is in the new CRD object and differs from that of the old CRD object.
    // It returns a set of the names of mutated versions.
    // This function does not check for duplicated versions, top-level version not in versions, or coexistence of
    // top-level and per-version schemas, as further validations will check for these problems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // must be JSONMap. A patch can be created from an original and modified document by
    // calling CreateTwoWayMergeMapPatch.
    // Warning: the original and patch JSONMap objects are mutated by this function and should not be reused.
    func StrategicMergeMapPatch(original, patch JSONMap, dataStruct interface{}) (JSONMap, error) {
    	schema, err := NewPatchMetaFromStruct(dataStruct)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>This method can also be used to create an empty collection, which can later be mutated to add elements.</p>
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection. Never returns null.
         */
        ConfigurableFileCollection files(Object... paths);
    
    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. src/net/http/transport.go

    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    	extra    Header                 // extra headers to write, or nil
    	trace    *httptrace.ClientTrace // optional
    
    	ctx    context.Context // canceled when we are done with the request
    	cancel context.CancelCauseFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    inference. Therefore it does do some mutation of the graph. Constant folding
    required to produce more exact shapes is also performed but these values
    are only kept in the context rather than the ops folded/IR mutated.
    
    #### Options
    ```
    -max-iterations : Maximum shape inference iterations
    ```
    ### `-tf-simple-device-assignment`
    
    _Simple device assignment in TF dialect._
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    		Reason:  reason,
    		Message: fmt.Sprintf("the HPA was unable to compute the replica count: %v", err),
    	}
    }
    
    // storeScaleEvent stores (adds or replaces outdated) scale event.
    // outdated events to be replaced were marked as outdated in the `markScaleEventsOutdated` function
    func (a *HorizontalController) storeScaleEvent(behavior *autoscalingv2.HorizontalPodAutoscalerBehavior, key string, prevReplicas, newReplicas int32) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	key, originalPod := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "name", Namespace: "test-ns"}})
    
    	// First update, so originalPod is outdated.
    	updatedPod := &example.Pod{}
    	if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            collection.from as List == ["src1", "src2"]
    
            when:
            collection.from = ["a", "b"]
            then:
            collection.from as List == [["a", "b"]]
        }
    
        def "can mutate the from collection"() {
            collection.from("src1", "src2")
            def from = collection.from
    
            when:
            from.clear()
    
            then:
            from.empty
            collection.from.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				ExpirationTimestamp: now.Add(3 * time.Minute),
    			},
    			wantEncryptCalls: 1,
    			wantLogs: []string{
    				`"encrypting content using envelope service" uid="panda"`,
    				fmt.Sprintf(`"successfully rotated DEK" uid="panda" useSeed=false newKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b" oldKeyIDHash="" expirationTimestamp="%s"`,
    					now.Add(3*time.Minute).Format(time.RFC3339)),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	parentRefs := extractParentReferenceInfo(ctx.GatewayReferences, route.ParentRefs, route.Hostnames, gvk.HTTPRoute, obj.Namespace)
    	reportStatus := func(results []RouteParentResult) {
    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			rs := s.(*k8s.HTTPRouteStatus)
    			rs.Parents = createRouteStatus(results, obj, rs.Parents)
    			return rs
    		})
    	}
    
    	type conversionResult struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top