Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,682 for con2 (0.06 sec)

  1. pilot/pkg/xds/pushqueue.go

    	p.queue[0] = nil
    	p.queue = p.queue[1:]
    
    	request = p.pending[con]
    	delete(p.pending, con)
    
    	// Mark the connection as in progress
    	p.processing[con] = nil
    
    	return con, request, false
    }
    
    func (p *PushQueue) MarkDone(con *Connection) {
    	p.cond.L.Lock()
    	defer p.cond.L.Unlock()
    	request := p.processing[con]
    	delete(p.processing, con)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    repositories {
        maven { url '${mavenRepo.uri}' }
    }
    configurations {
        conf
    }
    dependencies {
        conf 'org.test:dep1:1.0'
    }
    
    configurations.conf.incoming.beforeResolve { resolvableDependencies ->
        project.dependencies.add('conf', 'org.test:dep2:1.0')
    }
    
    task printFiles {
        def conf = configurations.conf
        doLast {
            def files = conf.collect { it.name }
            println files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
    func (c *Conn) SetDeadline(t time.Time) error {
    	return c.conn.SetDeadline(t)
    }
    
    // SetReadDeadline sets the read deadline on the underlying connection.
    // A zero value for t means [Conn.Read] will not time out.
    func (c *Conn) SetReadDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. build/nsswitch.conf

    Benjamin Elder <******@****.***> 1538172367 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 29 00:04:48 UTC 2018
    - 68 bytes
    - Viewed (0)
  5. internal/kms/conn.go

    	// MAC generates the checksum of the given req.Message using the key
    	// with the req.Name at the KMS.
    	MAC(context.Context, *MACRequest) ([]byte, error)
    }
    
    var ( // compiler checks
    	_ conn = (*kmsConn)(nil)
    	_ conn = (*kesConn)(nil)
    	_ conn = secretKey{}
    )
    
    // Supported KMS types
    const (
    	MinKMS  Type = iota + 1 // MinIO KMS
    	MinKES                  // MinIO MinKES
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/collections/tests/collections.conf

    Laura Kassovic <******@****.***> 1713377655 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 72 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/groovy/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)
  8. 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)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/optimize_tf_control_flow_side_effect.mlir

    func.func @set_stateless(%arg: tensor<i32>, %cond: tensor<i1>) -> (tensor<i32>, tensor<i32>) {
      // CHECK: tf.While
      // CHECK-SAME: is_stateless = true
      %0 = "tf.While"(%arg) { cond = @no_side_effect_cond, body = @no_side_effect_body, is_stateless = false} : (tensor<i32>) -> (tensor<i32>)
      // CHECK: tf.If
      // CHECK-SAME: is_stateless = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 01:15:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project2/1.0/ivy-1.0.xml

        <description/>
      </info>
      <configurations>
        <conf name="default" visibility="public" description="Configuration for default artifacts." extends="runtime"/>
        <conf name="archives" visibility="public" description="Configuration for archive artifacts."/>
        <conf name="compile" visibility="private" description="Compile classpath for source set 'main'."/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top