Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 354 for Gotype (0.19 sec)

  1. security/pkg/pki/ca/ca.go

    )
    
    // SigningCAFileBundle locations of the files used for the signing CA
    type SigningCAFileBundle struct {
    	RootCertFile    string
    	CertChainFiles  []string
    	SigningCertFile string
    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_0 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
            self.filters_1 = np.random.uniform(
                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_1 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. src/net/ipsock_posix.go

    		(raddr == nil || raddr.family() == syscall.AF_INET) {
    		return syscall.AF_INET, false
    	}
    	return syscall.AF_INET6, false
    }
    
    func internetSocket(ctx context.Context, net string, laddr, raddr sockaddr, sotype, proto int, mode string, ctrlCtxFn func(context.Context, string, string, syscall.RawConn) error) (fd *netFD, err error) {
    	switch runtime.GOOS {
    	case "aix", "windows", "openbsd", "js", "wasip1":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/git/missingrepo.txt

    handle dir
    
    -- missingrepo-git/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/missingrepo/missingrepo-git git https://vcs-test.golang.org/git/missingrepo">
    -- missingrepo-git/notmissing/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 409 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

            this.ruleActionAdapter = ruleActionAdapter;
            this.moduleIdentifierNotationParser = NotationParserBuilder
                .toType(ModuleIdentifier.class)
                .fromCharSequence(new ModuleIdentifierNotationConverter(moduleIdentifierFactory))
                .toComposite();
        }
    
        /**
         * Sets the validator to invoke prior to each mutation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/net/fd_posix.go

    //go:build unix || windows
    
    package net
    
    import (
    	"internal/poll"
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // Network file descriptor.
    type netFD struct {
    	pfd poll.FD
    
    	// immutable until Close
    	family      int
    	sotype      int
    	isConnected bool // handshake completed or use of association with peer
    	net         string
    	laddr       Addr
    	raddr       Addr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/ClosureToSpecNotationConverterTest.groovy

            expect:
            spec.isSatisfiedBy("foo")
            !spec.isSatisfiedBy("FOO")
            !spec.isSatisfiedBy("bar")
        }
    
        def parse(def value) {
            return NotationParserBuilder.toType(Spec).fromType(Closure, converter).toComposite().parseNotation(value)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 18 06:12:27 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  8. src/net/internal/socktest/switch.go

    // type and protocol number.
    type Cookie uint64
    
    // Family returns an address family.
    func (c Cookie) Family() int { return int(c >> 48) }
    
    // Type returns a socket type.
    func (c Cookie) Type() int { return int(c << 16 >> 32) }
    
    // Protocol returns a protocol number.
    func (c Cookie) Protocol() int { return int(c & 0xff) }
    
    func cookie(family, sotype, proto int) Cookie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    <!DOCTYPE [<!ENTITY xlt '">'>]>
    <!DOCTYPE [<!ENTITY xlt "'<">]>
    `
    
    var nestedDirectivesTokens = []Token{
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt ">">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt "<">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt '>'>]`),
    	CharData("\n"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyNotationParser.java

            NotationParser<Object, Dependency> notationParser = NotationParserBuilder
                .toType(Dependency.class)
                .noImplicitConverters()
                .fromCharSequence(stringNotationConverter)
                .fromType(MinimalExternalModuleDependency.class, minimalExternalDependencyNotationConverter)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top