Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 243 for opform (0.13 sec)

  1. src/crypto/x509/sec1_test.go

    	"bytes"
    	"encoding/hex"
    	"strings"
    	"testing"
    )
    
    var ecKeyTests = []struct {
    	derHex            string
    	shouldReserialize bool
    }{
    	// Generated using:
    	//   openssl ecparam -genkey -name secp384r1 -outform PEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 19:34:12 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

         * The passed notation should conform these constraints:
         * <ul>
         *     <li>If a file notation is passed, it should be a single file.</li>
         *     <li>If it's a resolvable dependency, it should resolve to a single file.</li>
         * </ul>
         *
         * <p>
         * If the notation doesn't conform these constraints, an exception will be thrown at configuration time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/traceexp.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // traceExpWriter is a wrapper around trace writer that produces traceEvExperimentalBatch
    // batches. This means that the data written to the writer need not conform to the standard
    // trace format.
    type traceExpWriter struct {
    	traceWriter
    	exp traceExperiment
    }
    
    // unsafeTraceExpWriter produces a traceExpWriter that doesn't lock the trace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    // This will automatically find the proper version of the object, and the
    // corresponding schema information.
    // The keys to the map must be consistent with the names
    // used by Refs within the schemas.
    // The schemas should conform to the Kubernetes Structural Schema OpenAPI
    // restrictions found in docs:
    // https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#specifying-a-structural-schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/internal/trace/testtrace/expectation.go

    func ExpectSuccess() *Expectation {
    	return new(Expectation)
    }
    
    // Check validates whether err conforms to the expectation. Returns
    // an error if it does not conform.
    //
    // Conformance means that if failure is true, then err must be non-nil.
    // If err is non-nil, then it must match errorMatcher.
    func (e *Expectation) Check(err error) error {
    	if !e.failure && err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/os/proc.go

    		// We were told to panic on calls to os.Exit(0).
    		// This is used to fail tests that make an early
    		// unexpected call to os.Exit(0).
    		panic("unexpected call to os.Exit(0) during test")
    	}
    
    	// Inform the runtime that os.Exit is being called. If -race is
    	// enabled, this will give race detector a chance to fail the
    	// program (racy programs do not have the right to finish
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. SECURITY.md

    3. Code is audited to find any potential similar problems.
    4. Fixes are prepared for the latest release.
    5. On the date that the fixes are applied a security advisory will be published on <https://blog.min.io>.
       Please inform us in your report email whether MinIO should mention your contribution w.r.t. fixing
       the security issue. By default MinIO will **not** publish this information to protect your privacy.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

            return new Slf4jLogger(loggerFactory.getLogger(role));
        }
    
        /**
         * The logger name for a component with a non-null hint is <code>role.hint</code>.
         * <b>Warning</b>: this does not conform to logger name as class name convention.
         * (and what about <code>null</code> and <code>default</code> hint equivalence?)
         */
        public Logger getLoggerForComponent(String role, String hint) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Objects.java

       *       {@link Object#equals(Object)}.
       *   <li>{@code false} in all other situations.
       * </ul>
       *
       * <p>This assumes that any non-null objects passed to this function conform to the {@code
       * equals()} contract.
       *
       * <p><b>Java 7+ users:</b> This method should be treated as deprecated; use {@link
       * java.util.Objects#equals} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/PatternFilenameFilter.java

       * return type is plain FilenameFilter. If we made such a change, then the annotation we choose
       * here would have no significance to end users, who would be forced to conform to the signature
       * used in FilenameFilter.)
       */
      @Override
      public boolean accept(File dir, String fileName) {
        return pattern.matcher(fileName).matches();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top