Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,565 for Applies (0.23 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingRealWorldIntegrationTest.groovy

            when:
            succeeds('resolve')
    
            then:
            file('libs').assertHasDescendants('ha-api-3.1.7.jar')
        }
    
        def 'resolve maven module with non-existing custom packaging artifact - applies java plugin'() {
            given:
            buildFile.text = '''plugins {
                id 'java'
            }
            '''.stripIndent() + buildFile.text
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Plugin.java

     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * <p>A <code>Plugin</code> represents an extension to Gradle. A plugin applies some configuration to a target object.
     * Usually, this target object is a {@link org.gradle.api.Project}, but plugins can be applied to any type of
     * objects.</p>
     *
     * @param <T> The type of object which this plugin can configure.
     */
    public interface Plugin<T> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/PluginRequestsHandlerTest.kt

    import org.gradle.plugin.use.internal.PluginRequestApplicator
    
    import org.junit.Test
    
    
    class PluginRequestsHandlerTest {
    
        @Test
        fun `applies plugins after merging auto-applied plugin requests`() {
    
            // given:
            val pluginManager = mock<PluginManagerInternal>()
            val target = mock<ProjectInternal> {
                on { this.pluginManager } doReturn pluginManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

        /**
         * Returns the Eclipse natures configured on the project.
         * <p>
         * Some natures are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javanature"} entry. Note, that the exact list of automatically added
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

              "static-range-ptq-to-all", "Applies `StaticRangePtq` to all quantizable units."),
            clEnumValN(mlir::quant::stablehlo::testing::TestQuantizationSpecs::kStaticRangePtqToComputeHeavy,
              "static-range-ptq-to-compute-heavy", "Applies `StaticRangePtq` to only compute heavy units.")
          )}]>
      ];
      let dependentDialects = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tests/testdata/config/virtual-service-all.yaml

    kind: VirtualService
    metadata:
      name: all
      namespace: testns
    spec:
      hosts:
      - service3.default.svc.cluster.local
      - uk.bookinfo.com
      - eu.bookinfo.com
      gateways:
      - my-gateway
      - mesh # applies to all the sidecars in the mesh
      http:
      - match:
        - headers:
            cookie:
              regex: "^(.*?;)?(user=dev-123)(;.*)?"
        route:
        - destination:
            port:
              number: 81
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 790 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/decorator.go

    func (d DecoratorFunc) Decorate(handler Interface, name string) Interface {
    	return d(handler, name)
    }
    
    type Decorators []Decorator
    
    // Decorate applies the decorator in inside-out order, i.e. the first decorator in the slice is first applied to the given handler.
    func (d Decorators) Decorate(handler Interface, name string) Interface {
    	result := handler
    	for _, d := range d {
    		result = d.Decorate(result, name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:54:31 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. internal/s3select/sql/statement.go

    	default:
    		r := int64(*v.Int)
    		if r < 0 {
    			return -1, errBadLimitSpecified
    		}
    		return r, nil
    	}
    }
    
    // EvalFrom evaluates the From clause on the input record. It only
    // applies to JSON input data format (currently).
    func (e *SelectStatement) EvalFrom(format string, input Record) ([]*Record, error) {
    	if !e.selectAST.From.HasKeypath() {
    		return []*Record{&input}, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top