Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 963 for REAL (0.04 sec)

  1. src/cmd/compile/internal/ir/func_test.go

    			sym: "Baz",
    		},
    		{
    			in:  "memeqbody",
    			pkg: "",
    			sym: "memeqbody",
    		},
    		{
    			in:  `example%2ecom.Bar`,
    			pkg: `example%2ecom`,
    			sym: "Bar",
    		},
    		{
    			// Not a real generated symbol name, but easier to catch the general parameter form.
    			in:  `foo.Bar[sync/atomic.Uint64]`,
    			pkg: `foo`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `example%2ecom.Bar[sync/atomic.Uint64]`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/ipvs_linux.go

    	if err != nil {
    		return fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	dst, err := toIPVSDestination(rs)
    	if err != nil {
    		return fmt.Errorf("could not convert local real server to IPVS destination: %w", err)
    	}
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    	return runner.ipvsHandle.NewDestination(svc, dst)
    }
    
    // DeleteRealServer is part of ipvs.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            awsCredentials     | "authenticated"
            null               | "anonymous"
        }
    
        /**
         * Allows for quickly making real aws requests during development
         */
        @Ignore
        def "should interact with real S3 using KEY/SECRET pair"() {
            DefaultAwsCredentials credentials = new DefaultAwsCredentials()
            String bucketName = System.getenv('G_S3_BUCKET')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/module-disabled/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-library/module/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gotoolchain_net.txt

    env GOSUMDB=$oldsumdb' http://badurl'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    ! go version
    ! stderr downloading
    stderr 'panic: use of network' # test catches network access
    env GOSUMDB=$oldsumdb
    
    # Test a real GOTOOLCHAIN
    [short] skip
    [!net:golang.org] skip
    [!net:sum.golang.org] skip
    [!GOOS:darwin] [!GOOS:windows] [!GOOS:linux] skip
    [!GOARCH:amd64] [!GOARCH:arm64] skip
    
    env GOPROXY=
    [go-builder] env GOSUMDB=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/math/cmplx/exp.go

    //    DEC       -10,+10      8700       3.7e-17     1.1e-17
    //    IEEE      -10,+10     30000       3.0e-16     8.7e-17
    
    // Exp returns e**x, the base-e exponential of x.
    func Exp(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case math.IsInf(re, 0):
    		switch {
    		case re > 0 && im == 0:
    			return x
    		case math.IsInf(im, 0) || math.IsNaN(im):
    			if re < 0 {
    				return complex(0, math.Copysign(0, im))
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-library/module/kotlin/src/main/java/module-info.java

    module org.gradle.sample.lib {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRealProjectsDependencyResolveIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'testproject'
            """
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "resolves dependencies on real projects"() {
            // Real but ancient projects
            // Hibernate core brings in conflicts, exclusions and root poms
            // Add a direct dependency on an earlier version of commons-collection than required by hibernate core
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/bootstrap/config_test.go

    				ProxyConfig: &model.NodeMetaProxyConfig{
    					ClusterName: &v1alpha1.ProxyConfig_ServiceCluster{
    						ServiceCluster: "cluster",
    					},
    				},
    			},
    			Owner: "real-owner",
    		},
    		RawMetadata: map[string]any{},
    	}
    	node.Metadata.Owner = "real-owner"
    	node.RawMetadata["OWNER"] = "fake-owner"
    	node.RawMetadata["UNKNOWN"] = "new-field"
    	node.RawMetadata["A"] = 1
    	node.RawMetadata["B"] = map[string]any{"b": 1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top