Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,189 for cont (0.04 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/merge_tf_if_ops.mlir

    }
    
    func.func @nested_if_op_else_0(%cond: tensor<i1>, %x: tensor<i32>, %y: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %0, %1 = "tf.If"(%cond, %x, %y) {else_branch = @no_side_effect_else_0, then_branch = @no_side_effect_then_0, is_stateless = true} : (tensor<i1>, tensor<i32>, tensor<i32>) -> (tensor<i32>, tensor<i32>)
      func.return %0, %1 : 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
    
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:b:1.0'
                    conf 'org:c:1.0'
                    conf 'org:d:1.0'
                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "leaf", "--configuration", "conf"
    
            then:
            outputContains """
    org:leaf:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/queue/instance.go

    		initialSync: atomic.NewBool(false),
    		cond:        sync.NewCond(&sync.Mutex{}),
    		id:          name,
    		metrics:     newQueueMetrics(name),
    	}
    }
    
    func (q *queueImpl) Push(item Task) {
    	q.cond.L.Lock()
    	defer q.cond.L.Unlock()
    	if !q.closing {
    		q.tasks = append(q.tasks, &queueTask{task: item, enqueueTime: time.Now()})
    		q.metrics.depth.RecordInt(int64(len(q.tasks)))
    	}
    	q.cond.Signal()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/repo/org.example/project3/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.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project3/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.1K bytes
    - Viewed (0)
  10. src/crypto/tls/tls.go

    	"net"
    	"os"
    	"strings"
    )
    
    // Server returns a new TLS server side connection
    // using conn as the underlying transport.
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func Server(conn net.Conn, config *Config) *Conn {
    	c := &Conn{
    		conn:   conn,
    		config: config,
    	}
    	c.handshakeFn = c.serverHandshake
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top