Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 372 for addAction (0.19 sec)

  1. pkg/apis/resource/namedresources.go

    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    	//    attributes.quantity["a"].isGreaterThan(quantity("0")) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

                getSoftwareType(assignment.lhs.receiverObject).function.simpleName
            }
            val additions = resolutionResult.additions.groupBy { addition ->
                getSoftwareType(addition.container).function.simpleName
            }
            val nestedObjectAccess = resolutionResult.nestedObjectAccess.mapNotNull { access ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeTestServiceRegistrar.kt

    import org.jetbrains.kotlin.analysis.test.framework.test.configurators.AnalysisApiTestServiceRegistrar
    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * Registers services specific to Standalone mode *tests*, in addition to the Standalone production services registered by
     * [FirStandaloneServiceRegistrar][org.jetbrains.kotlin.analysis.api.standalone.base.project.structure.FirStandaloneServiceRegistrar].
     */
    @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/ConfigureAccessor.kt

        }
    
        interface Custom : ConfigureAccessor {
            val customAccessorIdentifier: String
        }
    
        interface ConfiguringLambdaArgument : ConfigureAccessor
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    [!GOEXPERIMENT:coverageredesign] skip
    
    go test -short -cover -covermode=atomic -coverpkg=coverdep/p1 coverdep
    
    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	// Decorators is a list of admission decorator to wrap around the admission plugins
    	Decorators admission.Decorators
    }
    
    // NewAdmissionOptions creates a new instance of AdmissionOptions
    // Note:
    //
    //	In addition it calls RegisterAllAdmissionPlugins to register
    //	all generic admission plugins.
    //
    //	Provides the list of RecommendedPluginOrder that holds sane values
    //	that can be used by servers that don't care about admission chain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. releasenotes/notes/merge-svc.yaml

    area: traffic-management
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/OperationGenerationId.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    /**
     * Represents the "generation" of a particular operation (either an addition function call or a property assignment operation).
     *
     * The order of generations is important as calls in later generations can override calls in earlier generations, but no the
     * other way around.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    	"fmt"
    	"reflect"
    
    	"gopkg.in/evanphx/json-patch.v4"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // Create a 3-way merge patch based-on JSON merge patch.
    // Calculate addition-and-change patch between current and modified.
    // Calculate deletion patch between original and modified.
    func CreateThreeWayJSONMergePatch(original, modified, current []byte, fns ...mergepatch.PreconditionFunc) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top