Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 361 for con2 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                    ${configuredRepository(repoType)}
                """
            }
    
            def conf = "conf"
            resolve = new ResolveTestFixture(buildFile, conf)
            settingsFile << "rootProject.name = 'test'"
            resolve.prepare()
            buildFile << """
                configurations {
                    $conf
                }
            """
            resolve.addDefaultVariantDerivationStrategy()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .artifact([name: 'projectB-d', conf: 'd'])
                .dependsOn(organisation: 'ivy.configuration', module: 'projectC', revision: '1.7', conf: 'a->default')
                .dependsOn(organisation: 'ivy.configuration', module: 'projectD', revision: '1.7', conf: 'b->default')
                .dependsOn(organisation: 'ivy.configuration', module: 'projectE', revision: '1.7', conf: 'd->default')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    }
    
    func (conn *Connection) ID() string {
    	return conn.conID
    }
    
    func (conn *Connection) Peer() string {
    	return conn.peerAddr
    }
    
    func (conn *Connection) SetID(id string) {
    	conn.conID = id
    }
    
    func (conn *Connection) ConnectedAt() time.Time {
    	return conn.connectedAt
    }
    
    func (conn *Connection) Stop() {
    	close(conn.stop)
    }
    
    func (conn *Connection) MarkInitialized() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                configurations {
                    conf.dependencies.clear()
                }
    
                dependencies {
                    conf 'org.test:dep'
                    conf 'org.test:swag:1.0'
                    conf(platform('org.test:deps:1.0'))
                    conf(platform('org.test:platform:1.0'))
                }
    """
            checkConfiguration("conf")
            resolve.expectDefaultConfiguration("runtime")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func_test.go

    }
    
    // If specifies a BlockIf.
    func If(cond, sub, alt string) ctrl {
    	return ctrl{BlockIf, cond, []string{sub, alt}}
    }
    
    // Exit specifies a BlockExit.
    func Exit(arg string) ctrl {
    	return ctrl{BlockExit, arg, []string{}}
    }
    
    // Eq specifies a BlockAMD64EQ.
    func Eq(cond, sub, alt string) ctrl {
    	return ctrl{BlockAMD64EQ, cond, []string{sub, alt}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. internal/event/target/amqp.go

    		// close when we know this is a network error.
    		target.conn.Close()
    	}
    
    	conn, err = amqp091.Dial(target.args.URL.String())
    	if err != nil {
    		if xnet.IsConnRefusedErr(err) {
    			return nil, nil, store.ErrNotConnected
    		}
    		return nil, nil, err
    	}
    
    	ch, err = conn.Channel()
    	if err != nil {
    		return nil, nil, err
    	}
    
    	target.conn = conn
    
    	if target.args.PublisherConfirms {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                }
                'org.test:moduleB:1.0'()
            }
    
            when:
            buildFile << """
                configurations.conf {
                    attributes { attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 8) }
                }
                dependencies {
                    conf 'org.test:moduleA:1.0'
                    components {
                        withModule('org.test:moduleA', MissingJdk8VariantRule) { params('runtime') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                        confAttrs.transitive = 'false'
                    }
                    conf(confAttrs)
                }
            }
            builder.publications {
                artifacts.each { art ->
                    if (!art.undeclared) {
                        Set<String> confs = []
                        if (art.conf) {
                            confs = [art.conf]
                        } else {
                            variants.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	// proxy returns a connection to addr.
    	proxy(ctx context.Context, addr string) (net.Conn, error)
    }
    
    var _ proxier = &httpConnectProxier{}
    
    type httpConnectProxier struct {
    	conn         net.Conn
    	proxyAddress string
    }
    
    func (t *httpConnectProxier) proxy(ctx context.Context, addr string) (net.Conn, error) {
    	return tunnelHTTPConnect(t.conn, t.proxyAddress, addr)
    }
    
    var _ proxier = &grpcProxier{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		_, err := httpstream.Handshake(req, w, []string{constants.PortForwardV1Name})
    		require.NoError(t, err)
    		upgrader := spdy.NewResponseUpgrader()
    		conn := upgrader.UpgradeResponse(w, req, justQueueStream(streamChan))
    		require.NotNil(t, conn)
    		defer conn.Close() //nolint:errcheck
    		<-stopServerChan
    	}))
    	defer spdyServer.Close()
    	// Create UpgradeAwareProxy handler, with url/transport pointing to upstream SPDY. Then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top