Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,270 for WAY (0.22 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemStream.java

         *
         * <p>This method is here because stack trace sanitizing is currently performed by the caller.
         * However, each caller does this in a different way and they all do this in a different way
         * to the services used by this type.
         * </p>
         *
         * <p>
         * Stack trace sanitization should be handled by this service and this method removed.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 06:37:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/metric_recorder.go

    		recorder: GatedPods(),
    	}
    }
    
    // Inc increases a metric counter by 1, in an atomic way
    func (r *PendingPodsRecorder) Inc() {
    	r.recorder.Inc()
    }
    
    // Dec decreases a metric counter by 1, in an atomic way
    func (r *PendingPodsRecorder) Dec() {
    	r.recorder.Dec()
    }
    
    // Clear set a metric counter to 0, in an atomic way
    func (r *PendingPodsRecorder) Clear() {
    	r.recorder.Set(float64(0))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 07:27:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/advanced-dependencies.md

    Let's imagine that we want to have a dependency that checks if the query parameter `q` contains some fixed content.
    
    But we want to be able to parameterize that fixed content.
    
    ## A "callable" instance
    
    In Python there's a way to make an instance of a class a "callable".
    
    Not the class itself (which is already a callable), but an instance of that class.
    
    To do that, we declare a method `__call__`:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

     * @since 3.3
     */
    public interface AttributeMatchingStrategy<T> {
        CompatibilityRuleChain<T> getCompatibilityRules();
    
        DisambiguationRuleChain<T> getDisambiguationRules();
    
        /**
         * <p>A short-hand way to define both a compatibility rule and
         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
         * <p>All provider values which are lower than or equal the consumer value are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest.groovy

    class JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        def "classes from cache are used when dependent class is changed in ABI compatible way"() {
            given:
            project_a_depends_on_project_b()
    
            when:
            withBuildCache().run 'assemble'
    
            then:
            executedAndNotSkipped ':b:jar'
            executedAndNotSkipped ':a:jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * Provides a way to encode structured data to a backing byte stream. Implementations may buffer outgoing encoded bytes prior
     * to writing to the backing byte stream.
     */
    public interface Encoder {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. test/chan/select5.go

    		panic("nilch recv")
    	{{end}}
    	}
    	{{end}}
    	if x != n {
    		die(x)
    	}
    	n++
    `)
    
    var recvOrder = parse("recvOrder", `
    	{{/*  Send n, receive it one way or another into x, check that they match. */}}
    	{{/*  Check order of operations along the way by calling functions that check */}}
    	{{/*  that the argument sequence is strictly increasing. */}}
    	order = 0
    	c <- n
    	{{if .Maybe}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  8. releasenotes/notes/35220.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
    - 35220
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 15 03:07:28 UTC 2021
    - 194 bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

         * Checks the entry name for path traversal vulnerable sequences.
         *
         * This code is used for path traversal, ZipSlip and TarSlip detection.
         *
         * <b>IMPLEMENTATION NOTE</b>
         * We do it this way instead of the way recommended in <a href="https://snyk.io/research/zip-slip-vulnerability"></a>
         * for performance reasons, calling {@link File#getCanonicalPath()} is too expensive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/EventBus.java

     *       <a href="https://developer.android.com/studio/build/shrink-code">R8 and Proguard</a>.
     *   <li>It doesn't offer a way to wait for multiple events before taking action. For example, it
     *       doesn't offer a way to wait for multiple producers to all report that they're "ready," nor
     *       does it offer a way to batch multiple events from a single producer together.
     *   <li>It doesn't support backpressure and other features needed for resilience.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
Back to top