Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for consuming (0.63 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    To make this work, we need to configure each task to know where to look for its inputs and where to place its outputs.
    Ensure that the producing and consuming tasks are configured with the same location and attach task dependencies between the tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    	w.WriteHeader(code)
    
    	if r.Method != "HEAD" {
    		io.CopyN(w, sendContent, sendSize)
    	}
    }
    
    // scanETag determines if a syntactically valid ETag is present at s. If so,
    // the ETag and remaining text after consuming ETag is returned. Otherwise,
    // it returns "", "".
    func scanETag(s string) (etag string, remain string) {
    	s = textproto.TrimString(s)
    	start := 0
    	if strings.HasPrefix(s, "W/") {
    		start = 2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    			s.buf.writeRune(r)
    		}
    		return true
    	}
    	if r != eof && accept {
    		s.UnreadRune()
    	}
    	return false
    }
    
    // peek reports whether the next character is in the ok string, without consuming it.
    func (s *ss) peek(ok string) bool {
    	r := s.getRune()
    	if r != eof {
    		s.UnreadRune()
    	}
    	return indexRune(ok, r) >= 0
    }
    
    func (s *ss) notEOF() {
    	// Guarantee there is data to be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    	firstType  *types.Type // first half type, for Int64
    	secondType *types.Type // second half type, for Int64
    
    	wideSelects     map[*Value]*Value // Selects that are not SSA-able, mapped to consuming stores.
    	commonSelectors map[selKey]*Value // used to de-dupe selectors
    	commonArgs      map[selKey]*Value // used to de-dupe OpArg/OpArgIntReg/OpArgFloatReg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. src/net/http/client.go

    	// response. Similarly, RoundTrip should not attempt to
    	// handle higher-level protocol details such as redirects,
    	// authentication, or cookies.
    	//
    	// RoundTrip should not modify the request, except for
    	// consuming and closing the Request's Body. RoundTrip may
    	// read fields of the request in a separate goroutine. Callers
    	// should not mutate or reuse the request until the Response's
    	// Body has been closed.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    application is **simple**, this will probably **not be a problem**, and you might not need to specify hard memory limits. But if you are **using a lot of memory** (for example with **machine learning** models), you should check how much memory you are consuming and adjust the **number of containers** that runs in **each machine** (and maybe add more machines to your cluster).
    
    If you run **multiple processes per container** (for example with the official Docker image) you will have to make sure...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    === Deprecations
    
    [[missing_dependencies]]
    ==== Missing dependencies between tasks
    
    Having a task which produces an output in a location and another task consuming that location by referring to it as an input without the consumer task depending on the producer task has been deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    You can store the credentials in a local `gradle.properties` file and use one of the open source Gradle plugins for encrypting and consuming credentials e.g. the link:https://plugins.gradle.org/plugin/nu.studer.credentials[credentials plugin].
    
    The transport protocol is part of the URL definition for a repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment/docker.md

    Mas isso também significa que, como o número de processos depende da CPU do contêiner em execução, a **quantidade de memória consumida** também dependerá disso.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top