Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for key0 (0.08 sec)

  1. cmd/bucket-handlers.go

    	formValues.Set("Bucket", bucket)
    	if fileName != "" && strings.Contains(formValues.Get("Key"), "${filename}") {
    		// S3 feature to replace ${filename} found in Key form field
    		// by the filename attribute passed in multipart
    		formValues.Set("Key", strings.ReplaceAll(formValues.Get("Key"), "${filename}", fileName))
    	}
    	object := trimLeadingSlash(formValues.Get("Key"))
    
    	successRedirect := formValues.Get("success_action_redirect")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    	if curDS.UID != oldDS.UID {
    		key, err := controller.KeyFunc(oldDS)
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", oldDS, err))
    			return
    		}
    		dsc.deleteDaemonset(logger, cache.DeletedFinalStateUnknown{
    			Key: key,
    			Obj: oldDS,
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodTemplate.json

                    },
                    "configMapKeyRef": {
                      "name": "nameValue",
                      "key": "keyValue",
                      "optional": true
                    },
                    "secretKeyRef": {
                      "name": "nameValue",
                      "key": "keyValue",
                      "optional": true
                    }
                  }
                }
              ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

                          "configMapKeyRef": {
                            "name": "nameValue",
                            "key": "keyValue",
                            "optional": true
                          },
                          "secretKeyRef": {
                            "name": "nameValue",
                            "key": "keyValue",
                            "optional": true
                          }
                        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  10. cmd/iam.go

    		return err
    	}
    
    	// We map keys that correspond to LDAP DNs and validate that they exist in
    	// the LDAP server.
    	var dnValidator func(*libldap.Conn, string) (*ldap.DNSearchResult, bool, error) = sys.LDAPConfig.GetValidatedUserDN
    	if isGroup {
    		dnValidator = sys.LDAPConfig.GetValidatedGroupDN
    	}
    
    	// map of normalized DN keys to original keys.
    	normalizedDNKeysMap := make(map[string][]string)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top