Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 763 for certChain (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall6(procCertFindChainInStore.Addr(), 6, uintptr(store), uintptr(certEncodingType), uintptr(findFlags), uintptr(findType), uintptr(findPara), uintptr(unsafe.Pointer(prevChainContext)))
    	certchain = (*CertChainContext)(unsafe.Pointer(r0))
    	if certchain == nil {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys   CertFindChainInStore(store Handle, certEncodingType uint32, findFlags uint32, findType uint32, findPara unsafe.Pointer, prevChainContext *CertChainContext) (certchain *CertChainContext, err error) [failretval==nil] = crypt32.CertFindChainInStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

            certChains.remove(alias);
        }
    
        @Override
        public Enumeration<String> engineAliases() {
            return Collections.enumeration(keys.keySet());
        }
    
        @Override
        public boolean engineContainsAlias(String alias) {
            return keys.containsKey(alias) || certChains.containsKey(alias);
        }
    
        @Override
        public int engineSize() {
            return keys.size() + certChains.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/likelyadjust.go

    					if certain[b1] > certain[b0] {
    						prediction = BranchLikely
    						if f.pass.debug > 0 {
    							describeBranchPrediction(f, b, certain[b0], certain[b1], prediction)
    						}
    					} else if certain[b0] > certain[b1] {
    						prediction = BranchUnlikely
    						if f.pass.debug > 0 {
    							describeBranchPrediction(f, b, certain[b1], certain[b0], prediction)
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     */
    public interface UserClassFilePermissions {
    
        /**
         * Describes if a certain class of users has read access to a file or directory.
         * <p>
         * Read access is the capability to view the contents of a file, or to list the contents of a directory.
         */
        boolean getRead();
    
        /**
         * Describes if a certain class of users has write access to a file or directory.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/BindingsBuilderExtensions.kt

        bind(MethodCodec)
    
        // Only serialize certain List implementations
        bind(arrayListCodec)
        bind(linkedListCodec)
        bind(copyOnWriteArrayListCodec)
    
        // Only serialize certain Set implementations for now, as some custom types extend Set (e.g. DomainObjectContainer)
        bind(HashSetCodec)
        bind(treeSetCodec)
        bind(copyOnWriteArraySetCodec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

     * <p>
     * For details on the actual permissions see {@link UserClassFilePermissions}.
     *
     * @since 8.3
     */
    public interface ConfigurableUserClassFilePermissions extends UserClassFilePermissions {
    
        /**
         * Enables or disables read access to a file or directory for a certain class of users.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents the target JVM environment. Typically, a standard JVM or Android.
     * This attribute can be used by libraries to indicate that a certain variant is better suited for
     * a certain JVM environment. It does however NOT strictly require environments to match, as the
     * general assumption is that Java libraries can also run on environments they are not optimized for.
     *
     * @since 7.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    // Do not use directly with Compare.
    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/37708.yaml

    area: telemetry
    issue:
      - https://github.com/istio/istio/issues/37667
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 19:04:43 UTC 2022
    - 286 bytes
    - Viewed (0)
Back to top