Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for Mutation (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * during a forbidden state.
         *
         * @return true if a deprecation was emitted
         */
        private boolean maybePreventMutation(MutationType type, String typeDescription) {
            // If an external party has seen the public state (variant metadata) of our configuration,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            where:
            targetRole << ModelActionRole.values().findAll { !it.subjectViewAvailable }
        }
    
        def "cannot add action for #targetRole mutation when in later #fromRole mutation"() {
            def action = Stub(Action)
    
            given:
            registry.registerInstance("thing", "value")
                .configure(fromRole) { it.path("thing").node(action) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def defaultDependencyAction = Mock(Action)
            def mutation = Mock(Action)
            conf.extendsFrom parent
            conf.defaultDependencies defaultDependencyAction
            conf.withDependencies mutation
    
            when:
            conf.runDependencyActions()
    
            then:
            1 * defaultDependencyAction.execute(conf.dependencies)
            1 * mutation.execute(conf.dependencies)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                }
    
                dependencies {
                    components {
                        // first notation: mutation of existing dependencies
                        withModule('org:directA', ModifyDependencyRule) {
                            params(CUSTOM_ATTRIBUTE)
                        }
                        // 2d notation: adding dependencies (this is a different code path)
                        withModule('org:directB', AddDependencyRule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            file("src.txt").createFile()
            buildFile << """
                task copy(type: Copy) {
                    outputs.cacheIf { true }
                    ${mutation}
                    from "src.txt"
                    into "destination"
                }
            """
    
            withBuildCache().run "copy"
            file("destination").deleteDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

        const char* description, TF_Status* status);
    
    // Returns the name of the graph function.
    // The return value points to memory that is only usable until the next
    // mutation to *func.
    TF_CAPI_EXPORT extern const char* TF_FunctionName(TF_Function* func);
    
    // Write out a serialized representation of `func` (as a FunctionDef protocol
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    func TestPodAddsBatching(t *testing.T) {
    	t.Parallel()
    
    	type podAdd struct {
    		delay time.Duration
    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three adds with no batching",
    			batchPeriod: 0 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

    AUTHENTICATION_WEBHOOK_CONFIG_FILE=${AUTHENTICATION_WEBHOOK_CONFIG_FILE:-""}
    
    # Install a default storage class (enabled by default)
    DEFAULT_STORAGE_CLASS=${KUBE_DEFAULT_STORAGE_CLASS:-true}
    
    # Do not run the mutation detector by default on a local cluster.
    # It is intended for a specific type of testing and inherently leaks memory.
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-false}"
    export KUBE_CACHE_MUTATION_DETECTOR
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Build logic like the above example creates challenges in resolving declared dependencies, as reporting tools will display this dependency as if the user declared the version as "2.0", even though they never did.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    type StatefulSetStatus struct {
    	// observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
    	// StatefulSet's generation, which is updated on mutation by the API Server.
    	// +optional
    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
    
    	// replicas is the number of Pods created by the StatefulSet controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top