Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,682 for con2 (0.06 sec)

  1. cni/pkg/install/testdata/bridge.conf

    Pengyuan Bian <******@****.***> 1625172474 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 235 bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/http.go

    		return func() (http.RoundTripper, func(), error) {
    			conn := newConn()
    			return conn, closeFn(conn), nil
    		}, noCloseFn
    	}
    
    	// Re-use the same transport for all requests. For HTTP2, this should result
    	// in multiplexing all requests over the same connection.
    	conn := newConn()
    	return func() (http.RoundTripper, func(), error) {
    		return conn, noCloseFn, nil
    	}, closeFn(conn)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

            buildFile <<  """
    configurations {
        conf
        gradleStuff
        allowsCollections
    }
    
    def someDependency = project.dependencies.create(files('foo.txt'))
    dependencies {
        conf someDependency
        conf "org.mockito:mockito-core:1.8"
        conf group: 'org.spockframework', name: 'spock-core', version: '1.0'
        conf provider { "junit:junit:4.12" }
    
        conf('org.test:configured') {
            version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. test-site/conf/application.conf

    # so make sure this is the entry point.
    # Furthermore, it's assumed your route file is named properly.
    # So for an application router like `conf/my.application.Router`,
    # you may need to define a router file `my.application.routes`.
    # Default to Routes in the root package (and `conf/routes`)
    # application.router=my.application.Routes
    
    # Database configuration
    # ~~~~~
    # You can declare as many datasources as you want.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 2K bytes
    - Viewed (0)
  5. src/net/conf.go

    		// non-existent resolv.conf means "lookup" defaults
    		// to only "files", without DNS lookups.
    		if errors.Is(dnsConf.err, fs.ErrNotExist) {
    			return hostLookupFiles, dnsConf
    		}
    
    		lookup := dnsConf.lookup
    		if len(lookup) == 0 {
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "If the lookup keyword is not used in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/kotlin/some.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  7. test/typeparam/cons.go

    	Match(casenil Function[Nil[a], any], casecons Function[Cons[a], any]) any
    }
    
    type Nil[a any] struct {
    }
    
    func (xs Nil[a]) Match(casenil Function[Nil[a], any], casecons Function[Cons[a], any]) any {
    	return casenil.Apply(xs)
    }
    
    type Cons[a any] struct {
    	Head a
    	Tail List[a]
    }
    
    func (xs Cons[a]) Match(casenil Function[Nil[a], any], casecons Function[Cons[a], any]) any {
    	return casecons.Apply(xs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 23:41:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	conn.selectedProtocol = negotiated[0]
    	p := conn.protocols[conn.selectedProtocol]
    	if p.Binary {
    		conn.codec = rawCodec
    	} else {
    		conn.codec = base64Codec
    	}
    	conn.ws = ws
    	conn.channels = make([]*websocketChannel, len(p.Channels))
    	for i, t := range p.Channels {
    		switch t {
    		case ReadChannel:
    			conn.channels[i] = newWebsocketChannel(conn, byte(i), true, false)
    		case WriteChannel:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/break.kt

    fun test() {
        outer@ while (cond()) {
            consume(1)
            while (cond()) {
                consume(2)
                <expr>if (cond()) {
                    break
                } else if (cond()) {
                    break@outer
                }</expr>
            }
        }
    }
    
    fun consume(obj: Any?) {}
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 316 bytes
    - Viewed (0)
  10. tools/certs/Makefile.selfsigned.mk

    .SUFFIXES: .csr .pem .conf
    .PRECIOUS: %/ca-key.pem %/ca-cert.pem %/cert-chain.pem
    .PRECIOUS: %/workload-cert.pem %/key.pem %/workload-cert-chain.pem
    .SECONDARY: root-cert.csr root-ca.conf %/cluster-ca.csr %/intermediate.conf
    
    .DEFAULT_GOAL := help
    
    SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
    
    include $(SELF_DIR)common.mk
    
    #------------------------------------------------------------------------
    ##help:		print this help message
    .PHONY: help
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top