Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,309 for MODIFIED (0.29 sec)

  1. maven-api-impl/src/test/java/org/apache/maven/internal/impl/resolver/DefaultModelResolverTest.java

                    .version("(,2.0)")
                    .build();
    
            AtomicReference<org.apache.maven.api.model.Parent> modified = new AtomicReference<>();
            assertNotNull(this.newModelResolver().resolveModel(session, parent, modified));
            assertEquals("1", modified.get().getVersion());
        }
    
        @Test
        void testResolveDependencyThrowsModelResolverExceptionWhenNotFound() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/incremental/InputFileDetails.java

        /**
         * Was the file added?
         * @return true if the file was added since the last execution
         */
        boolean isAdded();
    
        /**
         * Was the file modified?
         * @return if the file was modified
         */
        boolean isModified();
    
        /**
         * Was the file removed?
         * @return true if the file was removed since the last execution
         */
        boolean isRemoved();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            return path
        }
    
        /**
         * Cannot publish module metadata for component when artifacts are modified.
         * @see org.gradle.api.publish.maven.internal.validation.MavenPublicationErrorChecker#checkThatArtifactIsPublishedUnmodified
         */
        def "fails when publishing module metadata for component with modified artifacts"() {
            given:
            createBuildScripts("""
                publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyModifier.java

         *
         * <p>
         * The dependency will be copied, so the original dependency will not be modified.
         * </p>
         *
         * @param dependency the dependency to modify
         * @param <D> the type of the {@link ModuleDependency}
         * @return the modified dependency
         */
        public final <D extends ModuleDependency> D modify(D dependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/MutableNetwork.java

       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes {@code edge} from this network, if it is present.
       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeEdge(E edge);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. cmd/bucket-metadata-sys.go

    // The returned object may not be modified.
    func (sys *BucketMetadataSys) GetNotificationConfig(bucket string) (*event.Config, error) {
    	meta, _, err := sys.GetConfig(GlobalContext, bucket)
    	if err != nil {
    		return nil, err
    	}
    	return meta.notificationConfig, nil
    }
    
    // GetSSEConfig returns configured SSE config
    // The returned object may not be modified.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. lib/time/update.bash

    	exit 2
    fi
    
    cd zoneinfo
    ../mkzip ../../zoneinfo.zip
    cd ../..
    
    files="update.bash zoneinfo.zip"
    modified=true
    if git diff --quiet $files; then
    	modified=false
    fi
    
    if [ "$1" = "-work" ]; then
    	echo Left workspace behind in work/.
    	shift
    else
    	rm -rf work
    fi
    
    if ! $modified; then
    	echo No updates needed.
    	exit 0
    fi
    
    echo Updated for $CODE/$DATA: $files
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/container/list/list.go

    // If mark is not an element of l, the list is not modified.
    // The mark must not be nil.
    func (l *List) InsertAfter(v any, mark *Element) *Element {
    	if mark.list != l {
    		return nil
    	}
    	// see comment in List.Remove about initialization of l
    	return l.insertValue(v, mark)
    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/FileEventCollector.java

                    break;
                case REMOVED:
                    changeDescription = "deleted";
                    break;
                case MODIFIED:
                default:
                    changeDescription = "modified";
            }
            logOutput(logger, "%s: %s", changeDescription, path.toString());
        }
    
        private void logOutput(StyledTextOutput logger, String message, Object... objects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top