Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 761 for Applies (0.36 sec)

  1. .github/dependabot.yml

    #    directory: "/"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
    #  - package-ecosystem: "maven"
    #    directory: "/android"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
      - package-ecosystem: "github-actions"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:08:24 UTC 2024
    - 761 bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

    
    /**
     * A convention that applies a property assignment operation (e.g. foo = "bar").
     */
    class AssignmentRecordConvention(private val assignmentRecord: AssignmentRecord) :
        Convention<AssignmentRecordConventionReceiver> {
        override fun apply(receiver: AssignmentRecordConventionReceiver) {
            receiver.receive(assignmentRecord)
        }
    }
    
    
    /**
     * A convention that applies a data addition operation (e.g. addFoo("bar")).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.WithOldConfigurationsSupport
    
    class BuildActionCompatibilityMappingCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "Applies idea module name compatibility mapping"() {
            given:
            settingsFile << """
                include 'a'
                include 'b'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSignatureSubstitutor.kt

    }
    
    public typealias KtSignatureSubstitutor = KaSignatureSubstitutor
    
    public interface KaSignatureSubstitutorMixIn : KaSessionMixIn {
        /**
         * Applies a [substitutor] to the given symbol and return a signature with substituted types.
         *
         * @see KaSubstitutor.substitute
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/software/ivy/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("IvyPublishCrossVersionIntegrationTest test applies the war plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types.go

    // 3. deny by default
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters.go

    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    type (
    	Filter            func(echo.Instances) echo.Instances
    	CombinationFilter func(from echo.Instance, to echo.Instances) echo.Instances
    )
    
    // From applies each of the filter functions in order to allow removing workloads from the set of clients.
    // Example:
    //
    //	echotest.New(t, apps).
    //	  From(echotest.SimplePodServiceAndAllSpecial, echotest.NoExternalServices).
    //	  Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. hack/testdata/multi-resource-1.yaml

    # Tests that initial failures to not block subsequent applies.
    # Pod must be before namespace, so it initially fails. Second
    # apply of pod should succeed, since namespace finally exists.
    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      namespace: multi-resource-ns
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 462 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// Zero the permutation's state.
    	for i := range d.a {
    		d.a[i] = 0
    	}
    	d.state = spongeAbsorbing
    	d.i, d.n = 0, 0
    }
    
    func (d *state) clone() *state {
    	ret := *d
    	return &ret
    }
    
    // permute applies the KeccakF-1600 permutation. It handles
    // any input-output buffering.
    func (d *state) permute() {
    	switch d.state {
    	case spongeAbsorbing:
    		// If we're absorbing, we need to xor the input into the state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top