Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,682 for con2 (0.12 sec)

  1. cmd/warm-backend-azure.go

    	case conf.AccountKey == "" && (conf.SPAuth.TenantID == "" || conf.SPAuth.ClientID == "" || conf.SPAuth.ClientSecret == ""):
    		return nil, errors.New("no authentication mechanism was provided")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    	if conf.IsSPEnabled() {
    		credential, err = newCredentialFromSP(conf)
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            for ( SmbTransportImpl conn : this.connections ) {
                if ( conn.matches(address, port, localAddr, localPort, hostName)
                        && ( tc.getConfig().getSessionLimit() == 0 || conn.getNumSessions() < tc.getConfig().getSessionLimit() ) ) {
                    try {
                        if ( conn.isFailed() || ( connectedOnly && conn.isDisconnected() ) ) {
                            continue;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

            'multiple dependency declarations (artifact notation)' | 'bar'        | "conf('org:foo') { artifact { name = 'bar'; type = 'distribution-tgz' } }; conf('org:foo') { artifact { name = 'bar'; type = 'zip' } }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/loadbalancer/leastrequest.go

    	if len(s.Connections) == 0 {
    		panic("attempting to create load balancer with zero connections")
    	}
    
    	conn := newLBConnection("LeastRequestLB", s.Connections)
    
    	if conn.AllWeightsEqual() {
    		return newUnweightedLeastRequest(conn)
    	}
    
    	return newWeightedLeastRequest(conn, s.ActiveRequestBias)
    }
    
    type unweightedLeastRequest struct {
    	*weightedConnections
    	r *rand.Rand
    }
    
    // nolint: gosec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/merge_tf_if_ops.mlir

    }
    
    func.func @nested_if_op_then_0(%cond: tensor<i1>, %x: tensor<i32>, %y: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %0 = "tf.AddV2"(%x, %y) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      func.return %0, %0 : tensor<i32>, tensor<i32>
    }
    
    func.func @nested_if_op_else_0(%cond: tensor<i1>, %x: tensor<i32>, %y: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                    dependsOn 'org:first:2.0'
                }
            }
    
            buildFile << """
                dependencies {
                    conf(platform('org:platform:1.0'))
                    conf 'org:first:1.0'
                    conf 'org:second:1.0'
                }
    """
            when:
            repositoryInteractions {
                'org:client:4.1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/log/syslog/syslog.go

    func (w *Writer) connect() (err error) {
    	if w.conn != nil {
    		// ignore err from close, it makes sense to continue anyway
    		w.conn.close()
    		w.conn = nil
    	}
    
    	if w.network == "" {
    		w.conn, err = unixSyslog()
    		if w.hostname == "" {
    			w.hostname = "localhost"
    		}
    	} else {
    		var c net.Conn
    		c, err = net.Dial(w.network, w.raddr)
    		if err == nil {
    			w.conn = &netConn{
    				conn:  c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/adstest.go

    )
    
    func NewAdsTest(t test.Failer, conn *grpc.ClientConn) *AdsTest {
    	return NewXdsTest(t, conn, func(conn *grpc.ClientConn) (DiscoveryClient, error) {
    		xds := discovery.NewAggregatedDiscoveryServiceClient(conn)
    		return xds.StreamAggregatedResources(context.Background())
    	})
    }
    
    func NewSdsTest(t test.Failer, conn *grpc.ClientConn) *AdsTest {
    	return NewXdsTest(t, conn, func(conn *grpc.ClientConn) (DiscoveryClient, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/mlrt/inline.mlir

      return %y: tensor<i1>
    }
    
    // CHECK-LABEL: func @while_cond_if
    // CHECK: [[cond:%.*]] = tf_mlrt.predicate
    // CHECK: [[z:%.*]] = mlrt.cond [[cond]] @then @else
    // CHECK: return [[z]]
    func.func @while_cond_if(%cond: tensor<i1>, %x: tensor<i1>, %y: tensor<i1>, %z: tensor<i32>) -> (tensor<i1>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 01:01:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

                    configurations { conf }
                }
    
                configurations {
                    ${singleProjectConfs.join('\n')}
                    single {
                        extendsFrom(${singleProjectConfs.join(',')})
                    }
                }
    
                dependencies {
                    conf 'org:foo'
                    conf project(path: ':p1', configuration: 'conf')
                    ${singleProjectDeps.join('\n')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top