Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,181 for webform (0.19 sec)

  1. releasenotes/notes/ingress-routes.yaml

    - |
      **Added** a feature flag `PILOT_LEGACY_INGRESS_BEHAVIOR`, default to false.
      If this is set to true, istio ingress will perform the legacy behavior, 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 16:36:36 UTC 2022
    - 514 bytes
    - Viewed (0)
  2. src/strings/compare.go

    package strings
    
    import "internal/bytealg"
    
    // Compare returns an integer comparing two strings lexicographically.
    // The result will be 0 if a == b, -1 if a < b, and +1 if a > b.
    //
    // Use Compare when you need to perform a three-way comparison (with
    // slices.SortFunc, for example). It is usually clearer and always faster
    // to use the built-in string comparison operators ==, <, >, and so on.
    func Compare(a, b string) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 628 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/apply.go

    	cmd.Flags().BoolVar(&flags.etcdUpgrade, options.EtcdUpgrade, flags.etcdUpgrade, "Perform the upgrade of etcd.")
    	cmd.Flags().BoolVar(&flags.renewCerts, options.CertificateRenewal, flags.renewCerts, "Perform the renewal of certificates used by component changed during upgrades.")
    	options.AddPatchesFlag(cmd.Flags(), &flags.patchesDir)
    
    	return cmd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. internal/kms/errors.go

    import (
    	"fmt"
    	"net/http"
    )
    
    var (
    	// ErrPermission is an error returned by the KMS when it has not
    	// enough permissions to perform the operation.
    	ErrPermission = Error{
    		Code:    http.StatusForbidden,
    		APICode: "kms:NotAuthorized",
    		Err:     "insufficient permissions to perform KMS operation",
    	}
    
    	// ErrKeyExists is an error returned by the KMS when trying to
    	// create a key that already exists.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          </match>
        </magic>
      </mime-type>
      <mime-type type="application/vnd.xfdl">
        <glob pattern="*.xfdl"/>
      </mime-type>
      <mime-type type="application/vnd.xfdl.webform"/>
      <mime-type type="application/vnd.xmi+xml"/>
      <mime-type type="application/vnd.xmpie.cpkg"/>
      <mime-type type="application/vnd.xmpie.dpkg"/>
      <mime-type type="application/vnd.xmpie.plan"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. releasenotes/notes/revision-tag-command.yaml

        control plane revisions. Users can label their namespaces with a revision tag rather than pointing them
        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
        to perform upgrades with the ease of in-place upgrades while having the safety revision-based upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  7. internal/config/identity/ldap/help.go

    			Key:         LookupBindDN,
    			Description: `DN for LDAP read-only service account used to perform DN and group lookups` + defaultHelpPostfix(LookupBindDN),
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         LookupBindPassword,
    			Description: `Password for LDAP read-only service account used to perform DN and group lookups` + defaultHelpPostfix(LookupBindPassword),
    			Optional:    true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/systemd/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package systemd provides utility functions for kubelet to perform systemd related operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 21:46:44 UTC 2020
    - 684 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ConfigurationGraphResolveMetadata.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.model;
    
    import java.util.Set;
    
    /**
     * Immutable metadata for a configuration of a component instance that is used to perform dependency graph resolution.
     */
    public interface ConfigurationGraphResolveMetadata extends VariantGraphResolveMetadata {
        Set<String> getHierarchy();
    
        boolean isCanBeConsumed();
    
        boolean isVisible();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 994 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Action.java

     * @param <T> The type of object which this action accepts.
     */
    @HasImplicitReceiver
    public interface Action<T> {
        /**
         * Performs this action against the given object.
         *
         * @param t The object to perform the action on.
         */
        void execute(T t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 968 bytes
    - Viewed (0)
Back to top