Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,181 for webform (0.25 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/configureTaskUsingProjectProperty/kotlin/build.gradle.kts

    tasks.register("performRelease") {
        val isCI = providers.gradleProperty("isCI")
        doLast {
            if (isCI.isPresent) {
                println("Performing release actions")
            } else {
                throw InvalidUserDataException("Cannot perform release outside of CI")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 294 bytes
    - Viewed (0)
  2. docs/iam/access-manager-plugin.go

    	m := reqMap["input"].(map[string]interface{})
    	accountValue := m["account"].(string)
    	actionValue := m["action"].(string)
    
    	// Allow user `minio` to perform any action.
    	var res Result
    	if accountValue == "minio" {
    		res.Result = true
    	} else {
    		// All other users may not perform any `s3:Put*` operations.
    		res.Result = true
    		if strings.HasPrefix(actionValue, "s3:Put") {
    			res.Result = false
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 08 17:15:20 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. .gitattributes

    # Auto detect text files and perform LF normalization
    *        text=auto
    
    *.java   text diff=java
    *.html   text diff=html
    *.css    text
    *.js     text
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 29 15:27:02 UTC 2013
    - 164 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/configureTaskUsingProjectProperty/groovy/build.gradle

        def isCI = providers.gradleProperty("isCI")
        doLast {
            if (isCI.present) {
                println("Performing release actions")
            } else {
                throw new InvalidUserDataException("Cannot perform release outside of CI")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 297 bytes
    - Viewed (0)
  5. releasenotes/notes/auto-san-validation-support.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to perform automatic SAN validation based on the downstream HTTP host/authority header
         when `ENABLE_AUTO_SNI` and `VERIFY_CERTIFICATE_AT_CLIENT` feature flags are enabled.
    docs:
       - https://docs.google.com/document/d/1pTUl-Ng3nXAWJb7UGJtalftznpxQEfID/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 16:51:08 UTC 2022
    - 503 bytes
    - Viewed (0)
  6. .gitattributes

    # Auto detect text files and perform LF normalization
    * text=auto
    
    # Known text files
    *.java text
    *.xml text
    *.yml text
    *.md text
    *.sh text
    *.css text
    *.txt text
    
    # Known binary files
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 04 21:50:10 UTC 2014
    - 196 bytes
    - Viewed (0)
  7. src/mdo/java/WrapperProperties.java

        }
    
        interface WriteOp<T> {
            T perform(Properties props);
        }
    
        interface WriteOpVoid {
            void perform(Properties props);
        }
    
        private <T> T writeOperation(WriteOp<T> runner) {
            Properties props = new Properties();
            props.putAll(getter.get());
            T ret = runner.perform(props);
            if (!props.equals(getter.get())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

      mlir::registerAsmPrinterCLOptions();
      llvm::cl::ParseCommandLineOptions(argc, argv, "TF MLIR translation driver\n");
    
      if (!import_saved_model_object_graph && !import_saved_model_signature_defs &&
          !import_saved_model_signature_defs_lite && !requested_translation) {
        llvm::errs() << "error: need to specify one translation to perform\n";
        return 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

        }
    
        /**
         * Invoked after MavenSession instance has been created.
         *
         * This callback is intended to allow extensions to inject execution properties,
         * activate profiles and perform similar tasks that affect MavenProject
         * instance construction.
         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. src/runtime/cgo/callbacks_aix.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgo
    
    // These functions must be exported in order to perform
    // longcall on cgo programs (cf gcc_aix_ppc64.c).
    //
    //go:cgo_export_static __cgo_topofstack
    //go:cgo_export_static runtime.rt0_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 402 bytes
    - Viewed (0)
Back to top