Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 380 for cont (0.04 sec)

  1. 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)
  2. pilot/pkg/xds/deltaadstest.go

    )
    
    func NewDeltaAdsTest(t test.Failer, conn *grpc.ClientConn) *DeltaAdsTest {
    	test.SetForTest(t, &features.DeltaXds, true)
    	return NewDeltaXdsTest(t, conn, func(conn *grpc.ClientConn) (DeltaDiscoveryClient, error) {
    		xds := discovery.NewAggregatedDiscoveryServiceClient(conn)
    		return xds.DeltaAggregatedResources(context.Background())
    	})
    }
    
    func NewDeltaXdsTest(t test.Failer, conn *grpc.ClientConn,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64latelower.go

    	v_0 := v.Args[0]
    	// match: (MOVBQZX x)
    	// cond: zeroUpper56Bits(x,3)
    	// result: x
    	for {
    		x := v_0
    		if !(zeroUpper56Bits(x, 3)) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64latelower_OpAMD64MOVLQZX(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (MOVLQZX x)
    	// cond: zeroUpper32Bits(x,3)
    	// result: x
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/plugin.go

    	p.Lock()
    	defer p.Unlock()
    
    	if p.conn != nil {
    		return p.conn, nil
    	}
    
    	network := "unix"
    	klog.V(4).InfoS(log("creating new gRPC connection"), "protocol", network, "endpoint", p.endpoint)
    	conn, err := grpc.Dial(
    		p.endpoint,
    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    		grpc.WithContextDialer(func(ctx context.Context, target string) (net.Conn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

    class ProjectDependenciesAttributesIntegrationTest extends AbstractIntegrationSpec {
    
        ResolveTestFixture resolve = new ResolveTestFixture(buildFile, 'conf')
    
        def setup() {
            buildFile << """
                configurations {
                   conf
                }
            """
            settingsFile << """
                rootProject.name = 'test'
            """
            resolve.prepare()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/resources/src/integTest/groovy/org/gradle/internal/resource/ExternalResourceNameIntegrationTest.groovy

            repositories {
                ivy { url "${hostPrefix}MISSING/folder/ivy" }
            }
            configurations { conf }
            dependencies {
                conf "org:name:1.0"
            }
            task resolve {
                def conf = configurations.conf
                doLast { conf.files.each {} }
            }
            """
    
            when:
            fails 'resolve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 08:36:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. cmd/ftp-server-driver.go

    	if bucket == "" {
    		return errors.New("bucket name cannot be empty")
    	}
    
    	clnt, err := driver.getMinIOClient(ctx)
    	if err != nil {
    		return err
    	}
    
    	if prefix == "" {
    		return clnt.MakeBucket(context.Background(), bucket, minio.MakeBucketOptions{Region: globalSite.Region()})
    	}
    
    	dirPath := buildMinioDir(prefix)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. cmd/erasure-coding.go

    	for algo := invalidErasureAlgo + 1; algo < lastErasureAlgo; algo++ {
    		for _, conf := range testConfigs {
    			failOnErr := func(err error) {
    				if err != nil {
    					logger.Fatal(errSelfTestFailure, "%v: error on self-test [d:%d,p:%d]: %v. Unsafe to start server.\n", algo, conf[0], conf[1], err)
    				}
    			}
    			e, err := NewErasure(context.Background(), int(conf[0]), int(conf[1]), blockSizeV2)
    			failOnErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis_test.cc

    struct DependentInductionVar {
      Output induction_var;
      ops::Switch latch;
    };
    
    DependentInductionVar CreateDependentLoopInvariantValue(
        const Scope& root, const string& prefix, const string& frame_name,
        const Output& loop_cond, const Output& value) {
      Output enter_value = ops::internal::Enter(root.WithOpName(prefix + "/enter"),
                                                value, frame_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. 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)
Back to top