Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,188 for cont (0.12 sec)

  1. 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)
  2. test/codegen/condmove.go

    func cmovinv(cond bool, a, b int) {
    	var x0, x1 int
    
    	if cond {
    		x0 = a
    	} else {
    		x0 = ^b
    	}
    	// arm64:"CSINV\tNE", -"CSEL"
    	r0 = x0
    
    	if cond {
    		x1 = ^b
    	} else {
    		x1 = a
    	}
    	// arm64:"CSINV\tEQ", -"CSEL"
    	r1 = x1
    }
    
    func cmovneg(cond bool, a, b, c int) {
    	var x0, x1 int
    
    	if cond {
    		x0 = a
    	} else {
    		x0 = -b
    	}
    	// arm64:"CSNEG\tNE", -"CSEL"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-1.5-ivy.xml

    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 392 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-2.1.5-ivy.xml

    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="2.1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 394 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tools/certs/Makefile.k8s.mk

    .SUFFIXES: .csr .pem .conf
    .PRECIOUS: %/ca-key.pem %/ca-cert.pem %/cert-chain.pem
    .PRECIOUS: %/workload-cert.pem %/key.pem %/workload-cert-chain.pem
    .SECONDARY: root-cert.csr root-ca.conf %/cluster-ca.csr %/intermediate.conf
    
    .DEFAULT_GOAL := help
    
    SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
    
    include $(SELF_DIR)common.mk
    
    #------------------------------------------------------------------------
    ##help:		print this help message
    .PHONY: help
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/projectB-1.5-ivy.xml

    <ivy-module version="1.0">
        <info organisation="test" module="projectB" revision="1.5" status="release"/>
        <configurations>
            <conf name="runtime" visibility="public"/>
            <conf name="default" visibility="public" extends="runtime"/>
        </configurations>
        <publications>
            <artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 436 bytes
    - Viewed (0)
  10. 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)
Back to top