Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ApplyAction (0.13 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginRequestApplicator.java

        }
    
        /**
         * The action that applies a plugin.
         */
        private class ApplyAction {
            private final PluginRequestInternal request;
            private final PluginResolution resolved;
    
            public ApplyAction(PluginRequestInternal request, PluginResolution resolved) {
                this.request = request;
                this.resolved = resolved;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 04:49:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    				if !action.Matches("patch", "clusterroles") {
    					t.Fatalf("unexpected action %#v", action)
    				}
    				applyAction, ok := action.(clienttesting.PatchAction)
    				if !ok {
    					t.Fatalf("unexpected action %#v", action)
    				}
    				ac := &rbacv1ac.ClusterRoleApplyConfiguration{}
    				if err := yaml.Unmarshal(applyAction.GetPatch(), ac); err != nil {
    					t.Fatalf("error unmarshalling apply request: %v", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    			rinfo.ReplicationStatus = replication.Completed
    			rinfo.ReplicationAction = replicateNone
    			goto applyAction
    		}
    		// if target returns error other than NoSuchKey, defer replication attempt
    		if minio.IsNetworkOrHostDown(cerr, true) && !globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top