Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,928 for CHANGED (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion.go

    			changed := false
    			if s.ValueValidation != nil {
    				if s.ValueValidation.AllOf != nil {
    					s.ValueValidation.AllOf = nil
    					changed = true
    				}
    				if s.ValueValidation.OneOf != nil {
    					s.ValueValidation.OneOf = nil
    					changed = true
    				}
    				if s.ValueValidation.AnyOf != nil {
    					s.ValueValidation.AnyOf = nil
    					changed = true
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 20:23:50 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            }
        }
    
        //asserts none of the files changed/added since last snapshot
        void noneRecompiled() {
            recompiledFiles([])
        }
    
        //asserts file changed/added since last snapshot
        void recompiledFile(File file) {
            recompiledFiles([file])
        }
    
        //asserts files changed/added since last snapshot
        void recompiledFiles(File... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/apitesting/fuzzer/valuefuzz_test.go

    	if x.Ptr.Y.I == 0 {
    		t.Errorf("x.Ptr.Y.I should have changed")
    	}
    
    	if x.Map["foo"] == 42 {
    		t.Errorf("x.Map[foo] should have changed")
    	}
    
    	if x.Slice[0] == 1 {
    		t.Errorf("x.Slice[0] should have changed")
    	}
    
    	if x.Ptr != p {
    		t.Errorf("x.Ptr changed")
    	}
    
    	m["foo"] = 7
    	if x.Map["foo"] != m["foo"] {
    		t.Errorf("x.Map changed")
    	}
    	s[0] = 7
    	if x.Slice[0] != s[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/skeleton.go

    func (s *Structural) StripValueValidations() *Structural {
    	s = s.DeepCopy()
    	v := Visitor{
    		Structural: func(s *Structural) bool {
    			changed := false
    			if s.ValueValidation != nil {
    				s.ValueValidation = nil
    				changed = true
    			}
    			return changed
    		},
    	}
    	v.Visit(s)
    	return s
    }
    
    // StripNullable returns a copy without nullable.
    func (s *Structural) StripNullable() *Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 14 01:06:36 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

        }
    
        def "not up-to-date when task name changed"() {
            expect:
            changesBetween(
                impl(PreviousTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
            ) == ["The type of task ':test' has changed from '$PreviousTask.name' to '$SimpleTask.name'." as String]
        }
    
        def "not up-to-date when class-loader has changed"() {
            def previousHash = TestHashCodes.hashCodeFrom(987)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(ivyRepo.module("changed.org", "changed-module", "changed"))
    
            createBuildScripts("""
    project(":project3") {
        publishing {
            publications.ivy {
                organisation "changed.org"
                module "changed-module"
                revision "changed"
            }
        }
    }
    """)
    
            when:
            run "publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.startParameterProperties != startParameterProperties) {
                        return "the set of Gradle properties has changed"
                    }
                    if (host.ignoreInputsInConfigurationCacheTaskGraphWriting != ignoreInputsInConfigurationCacheTaskGraphWriting) {
                        return "the set of ignored configuration inputs has changed"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentStatus.java

    import javax.annotation.Nullable;
    
    class DefaultDeploymentStatus implements Deployment.Status {
        private final boolean changed;
        private final Throwable failure;
    
        DefaultDeploymentStatus(boolean changed, @Nullable Throwable failure) {
            this.changed = changed;
            this.failure = failure;
        }
    
        @Override
        public Throwable getFailure() {
            return failure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/deployment/internal/OutOfDateTrackingDeployment.java

        private boolean changed;
        private Throwable failure;
    
        @Override
        public synchronized Status status() {
            Status result = new DefaultDeploymentStatus(changed, failure);
            changed = false;
            return result;
        }
    
        @Override
        public synchronized void outOfDate() {
            changed = true;
            failure = null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                    "Method com.example.Source.foo(java.lang.String): Parameter 0 nullability changed from non-nullable to nullable",
                    "Constructor com.example.Source(java.lang.String): Parameter 0 nullability changed from non-nullable to nullable",
                    "Method com.example.SourceKt.invoke(com.example.Source,java.lang.String): Parameter 1 nullability changed from non-nullable to nullable"
                )
                assertHasNoInformation()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.1K bytes
    - Viewed (0)
Back to top