Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for consuming (0.28 sec)

  1. architecture/networking/pilot.md

    This caching depends on declaring all inputs to the given generator as part of the cache key. This is extremely error-prone, as there is nothing preventing generators from consuming inputs that are *not* part of the key. When this happens, different clients will non-deterministically get incorrect configuration. This type of bug has historically resulted in CVEs.
    
    There are a few ways to prevent these:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    // when you are running a test of a single input case.
    const trace = false
    
    // A decodeOp is a single instruction in the decoder bytecode program.
    //
    // The decodeOps correspond to consuming and conditionally branching
    // on input bytes, consuming additional fields, and then interpreting
    // consumed data as instruction arguments. The names of the xRead and xArg
    // operations are taken from the Intel manual conventions, for example
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    It's a POM-only publication that has its own dependencies listed inside a `<dependencies>` block.
    The appropriate configuration in the Gradle build looks like this:
    +
    .Consuming a POM-only dependency
    ====
    include::sample[dir="snippets/mavenMigration/basic/kotlin",files="build.gradle.kts[tags=pom-dependencies]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * Testing your fixes to a 3rd-party dependency via <<composite_builds.adoc#composite_builds,composite builds>> (a better alternative to publishing to and consuming from <<declaring_repositories.adoc#sub:maven_local,Maven Local>>)
    
    You'll discover that Gradle has a rich API for working with dependencies — one that takes time to master, but is straightforward to use for common scenarios.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top