Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 270 for consuming (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    Do not copy the `*.lock` or `gc.properties` files if they exist.
    
    Note that creating the cache and consuming it should be done using compatible Gradle version, as shown in the table below.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    //
    // The decoded form returned by the Reader's Read method
    // rewrites the "\r\n" line endings into the simpler "\n",
    // removes leading dot escapes if present, and stops with error [io.EOF]
    // after consuming (and discarding) the end-of-sequence line.
    func (r *Reader) DotReader() io.Reader {
    	r.closeDot()
    	r.dot = &dotReader{r: r}
    	return r.dot
    }
    
    type dotReader struct {
    	r     *Reader
    	state int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Any other task depending on this jar file as an input file cannot be loaded from the cache when the jar file is rebuilt locally.
    This can lead to hard-to-diagnose cache misses when the consuming build is not a clean build or when a cacheable task depends on the output of a non-cacheable task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. internal/grid/handlers.go

    		// OutCapacity is the output capacity on the caller.
    		// If <= 0 capacity will be 1.
    		OutCapacity int
    	}
    
    	// StreamHandlerFn must process a request with an optional initial payload.
    	// It must keep consuming from 'in' until it returns.
    	// 'in' and 'out' are independent.
    	// The handler should never close out.
    	// Buffers received from 'in'  can be recycled with PutByteBuffer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/transform/transform.go

    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    	Nop SpanningTransformer = nop{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("ide/problems-api-usage")
                displayName = "Reporting and receiving problems via the Problems API"
                description = "Reporting problems from plugins and consuming it in IDE integrations"
                category = "IDE integration"
                common {
                    from(templates.problemsApiUsage)
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	panic(&in.parseErrors)
    }
    
    // eof reports whether the input has reached end of file.
    func (in *input) eof() bool {
    	return len(in.remaining) == 0
    }
    
    // peekRune returns the next rune in the input without consuming it.
    func (in *input) peekRune() int {
    	if len(in.remaining) == 0 {
    		return 0
    	}
    	r, _ := utf8.DecodeRune(in.remaining)
    	return int(r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/main/resources/header.html

                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#modeling-features" aria-expanded="false" aria-controls="modeling-features">Producing and Consuming Variants of Libraries</a>
                        <ul id="modeling-features">
                            <li><a href="../userguide/component_capabilities.html">Declaring Capabilities of a Library</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    		return len(x) - 1
    	}
    
    	return -1
    }
    
    // scanEscape parses an escape sequence where rune is the accepted
    // escaped quote. In case of a syntax error, it stops at the offending
    // character (without consuming it) and returns false. Otherwise
    // it returns true.
    func (s *Scanner) scanEscape(quote rune) bool {
    	offs := s.offset
    
    	var n int
    	var base, max uint32
    	switch s.ch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/transform/transform.go

    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    	Nop SpanningTransformer = nop{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
Back to top