Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dry (0.18 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                          "key": "istio_dry_run_allow_shadow_effective_policy_id"
                                        }
                                      ]
                                    }
                                  }
                                },
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.result",
                                  "metadata": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/compare/testdata/configdump.json

                                          "key": "istio_dry_run_allow_shadow_effective_policy_id"
                                        }
                                      ]
                                    }
                                  }
                                },
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.result",
                                  "metadata": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                          "key": "istio_dry_run_allow_shadow_effective_policy_id"
                                        }
                                      ]
                                    }
                                  }
                                },
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.result",
                                  "metadata": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
      // request. Valid values are:
      // - All: all dry run stages will be processed
      // +optional
      repeated string dryRun = 1;
    
      // Force is going to "force" Apply requests. It means user will
      // re-acquire conflicting fields owned by other people.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    	vars := mux.Vars(r)
    	updateURL := vars["updateURL"]
    	dryRun := r.Form.Get("dry-run") == "true"
    
    	mode := getMinioMode()
    	if updateURL == "" {
    		updateURL = minioReleaseInfoURL
    		if runtime.GOOS == globalWindowsOSName {
    			updateURL = minioReleaseWindowsInfoURL
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  6. cmd/peer-rest-server.go

    	}
    	si, err := strconv.Atoi(signalString)
    	if err != nil {
    		return np, grid.NewRemoteErr(err)
    	}
    	signal := serviceSignal(si)
    	switch signal {
    	case serviceRestart, serviceStop:
    		dryRun := vars.Get("dry-run") == "true" // This is only supported for `restart/stop`
    
    		waitingDisks := waitingDrivesNode()
    		if len(waitingDisks) > 0 {
    			buf, err := json.Marshal(waitingDisks)
    			if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
Back to top