Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Naked (0.18 sec)

  1. src/cmd/go/testdata/script/autocgo.txt

    # Assume we're on a system that can enable cgo normally.
    env CGO_ENABLED=
    go env CGO_ENABLED
    stdout 1
    
    # Clearing CC and removing everything but Go from the PATH should usually
    # disable cgo: no C compiler anymore (unless the baked-in defaultCC is an
    # absolute path and exists.
    env CC=
    env PATH=$GOROOT/bin
    go env CGO_ENABLED
    [!abscc] stdout 0
    [abscc] stdout 1
    
    # Setting CC should re-enable cgo.
    env CC=cc
    go env CGO_ENABLED
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 02:01:30 UTC 2022
    - 625 bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/external.go

    		Ports:             ports.All(),
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			ClientCert: file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/DefaultLegacyTypesSupport.java

    import java.io.InputStreamReader;
    import java.net.URL;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Enriches class loading with empty interfaces for certain types that have been removed,
     * but which are baked into the bytecode generated by the Groovy compiler.
     */
    public class DefaultLegacyTypesSupport implements LegacyTypesSupport {
        private static final Type OBJECT_TYPE = Type.getType(Object.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 12 21:33:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/net/lookup_unix.go

    	if !systemConf().mustUseGoResolver(r) {
    		port, err := cgoLookupPort(ctx, network, service)
    		if err != nil {
    			// Issue 18213: if cgo fails, first check to see whether we
    			// have the answer baked-in to the net package.
    			if port, err := goLookupPort(network, service); err == nil {
    				return port, nil
    			}
    		}
    		return port, err
    	}
    	return goLookupPort(network, service)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    ! exec ./example.test-trimpath.exe -test.v
    stdout '^GOROOT $'
    stderr 'cannot find package "runtime" in any of:\n\t\(\$GOROOT not set\)\n\t'$WORK${/}gopath${/}src${/}runtime' \(from \$GOPATH\)$'
    
    # If a correct GOROOT is baked in to the 'go' command itself, 'go run' and
    # 'go test' should not implicitly set GOROOT in the process environment
    # (because that could mask an unexpected production dependency on the GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultCompositeExcludeTest.groovy

        private final Set<ExcludeSpec> cached = new HashSet<>()
        private final List<ExcludeSpec> cachedLinear = new ArrayList<>(MAX_CACHED)
        private int depth
    
        /**
         * This test has been baked to maximize code coverage of {@link DefaultCompositeExclude}
         */
        def "compares specs"() {
            expect:
            (500_000).times {
                ExcludeSpec a = next()
                ExcludeSpec b = next()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/AccessorBackedExternalResource.java

        private final ExternalResourceAccessor accessor;
        private final ExternalResourceUploader uploader;
        private final ExternalResourceLister lister;
        // Should really be a parameter to the 'withContent' methods or baked into the accessor
        private final boolean revalidate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    func (idr *InitDryRunGetter) HandleListAction(action core.ListAction) (bool, runtime.Object, error) {
    	return false, nil, nil
    }
    
    // handleKubernetesService returns a faked Kubernetes service in order to be able to continue running kubeadm init.
    // The CoreDNS addon code GETs the Kubernetes service in order to extract the service subnet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/certificates/signing/admission_test.go

    					Certificate: []byte("data"),
    				}},
    				operation: admission.Update,
    			},
    			allowed:  true,
    			authzErr: errors.New("faked error"),
    		},
    		"deny request if authz lookup fails on certificate change": {
    			allowedName: "abc.com/xyz",
    			attributes: &testAttributes{
    				resource:    certificatesapi.Resource("certificatesigningrequests"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 8.9K bytes
    - Viewed (0)
Back to top