Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for farm (0.18 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    	backendURL, err := url.Parse(backend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	proxyHandler := NewSingleHostReverseProxy(backendURL)
    
    	// Discards errors of the form:
    	// http: proxy error: read tcp 127.0.0.1:44643: use of closed network connection
    	proxyHandler.ErrorLog = log.New(io.Discard, "", 0)
    
    	frontend := httptest.NewServer(proxyHandler)
    	defer frontend.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	// per-handshake performance cost.
    	Certificates []Certificate
    
    	// NameToCertificate maps from a certificate name to an element of
    	// Certificates. Note that a certificate name can be of the form
    	// '*.example.com' and so doesn't have to be a domain name as such.
    	//
    	// Deprecated: NameToCertificate only allows associating a single
    	// certificate with a given name. Leave this field nil to let the library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         * resource refers to a workgroup in a <code>smb://workgroup/</code> URL,
         * <li>all browseable shares of a server including printers, IPC
         * services, or disk volumes if this resource is a server URL in the form
         * <code>smb://server/</code>,
         * <li>or <code>null</code> if the resource cannot be resolved.
         * </ul>
         *
         * @return A <code>String[]</code> array of files and directories,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    
    [[sec:configuring_java_integration_tests]]
    == Configuring integration tests
    
    A common requirement for projects is to incorporate integration tests in one form or another.
    Their aim is to verify that the various parts of the project are working together properly.
    This often means that they require special execution setup and dependencies compared to unit tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (metadata.isExternalVariant()) {
                // If the current node represents an external variant, we must not consider its excludes
                // because it's some form of "delegation"
                return moduleExclusions.excludeAny(
                    incomingEdges.stream()
                        .map(EdgeState::getTransitiveExclusions)
                        .filter(Objects::nonNull)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = v.Args[0].Reg()
    		p.To.Reg = v.Reg()
    		p.To.Type = obj.TYPE_REG
    
    	case ssa.OpPPC64MOVDload, ssa.OpPPC64MOVWload:
    
    		// MOVDload and MOVWload are DS form instructions that are restricted to
    		// offsets that are a multiple of 4. If the offset is not a multiple of 4,
    		// then the address of the symbol to be loaded is computed (base + offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	assert(shouldTest("// +build linux", "linux", "arm"))
    	assert(shouldTest("// +build !windows", "linux", "arm"))
    	assertNot(shouldTest("// +build !windows", "windows", "amd64"))
    
    	// A file with no build tags will always be tested.
    	assert(shouldTest("// This is a test.", "os", "arch"))
    
    	// Build tags separated by a space are OR-ed together.
    	assertNot(shouldTest("// +build arm 386", "linux", "amd64"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    // and clears them from the parser state.
    func (p *parser) takePragma() Pragma {
    	prag := p.pragma
    	p.pragma = nil
    	return prag
    }
    
    // clearPragma is called at the end of a statement or
    // other Go form that does NOT accept a pragma.
    // It sends the pragma back to the pragma handler
    // to be reported as unused.
    func (p *parser) clearPragma() {
    	if p.pragma != nil {
    		p.pragh(p.pos(), p.scanner.blank, "", p.pragma)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    }
    
    // getRandomDisks - Creates a slice of N random disks, each of the form - minio-XXX
    func getRandomDisks(n int) ([]string, error) {
    	var erasureDisks []string
    	for i := 0; i < n; i++ {
    		path, err := os.MkdirTemp(globalTestTmpDir, "minio-")
    		if err != nil {
    			// Remove directories created so far.
    			removeRoots(erasureDisks)
    			return nil, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    // k8s.ParentReference in a form that can be stored in a map
    type parentKey struct {
    	Kind config.GroupVersionKind
    	// Name is the original name of the resource (eg Kubernetes Gateway name)
    	Name string
    	// Namespace is the namespace of the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top