Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,309 for MODIFIED (0.1 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

        default ModelSource resolveModel(Parent parent, AtomicReference<Parent> modified)
                throws UnresolvableModelException {
            org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
            ModelSource result = resolveModel(p);
            if (p.getDelegate() != parent) {
                modified.set(p.getDelegate());
            }
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. releasenotes/notes/proxy-headers.yaml

    releaseNotes:
      - |
        **Added** a new configuration to `ProxyConfig`, `ProxyHeaders`. This allows customization of headers like `server`, `x-forwarded-client-cert`, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 18:08:43 UTC 2023
    - 314 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	// sent.
    	ResultChan() <-chan Event
    }
    
    // EventType defines the possible types of events.
    type EventType string
    
    const (
    	Added    EventType = "ADDED"
    	Modified EventType = "MODIFIED"
    	Deleted  EventType = "DELETED"
    	Bookmark EventType = "BOOKMARK"
    	Error    EventType = "ERROR"
    )
    
    var (
    	DefaultChanSize int32 = 100
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  4. src/cmd/go/testdata/script/version_buildvcs_git.txt

    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    rm $GOBIN/a$GOEXE
    
    # Revision and commit time are tagged for repositories with commits.
    exec git add -A
    exec git commit -m 'initial commit'
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/generator/PropertiesPersistableConfigurationObjectTest.groovy

        }
    
        def storesToXmlFile() {
            object.loadDefaults()
            propertyValue = 'modified-value'
            def outputFile = tmpDir.file('output.properties')
    
            when:
            object.store(outputFile)
    
            then:
            Matchers.containsLine(outputFile.text, 'prop=modified-value')
        }
    
        def "can add transform Actions"() {
            object.loadDefaults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

            then:
            conditions.eventually {
                waitingForChangesMessageAppears()
            }
    
            when:
            changeListeners.broadcastChange(FileWatcherRegistry.Type.MODIFIED, file.toPath())
    
            then:
            conditions.eventually {
                rebuiltBecauseOfChange()
            }
    
            cleanup:
            cancellationToken.cancel()
            buildExits(runningBuild)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

            then:
            project.projectNatures.size() == 2
            project.buildCommands.size() == 2
        }
    
        @Issue('eclipse/buildship#694')
        def "EclipseProject attributes modified via beforeMerged"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               import org.gradle.plugins.ide.eclipse.model.BuildCommand
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskUpdatedInputs.out

    Executing incrementally
    MODIFIED: 1.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 53 bytes
    - Viewed (0)
  9. test/typeparam/listimp2.dir/a.go

    // If mark is not an element of l, the list is not modified.
    // The mark must not be nil.
    func (l *List[T]) InsertAfter(v T, mark *Element[T]) *Element[T] {
    	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: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/DefaultAdhocSoftwareComponent.java

        }
    
        /**
         * Ensure this component cannot be modified after observation.
         *
         * @see <a href="https://github.com/gradle/gradle/issues/20581">issue</a>
         */
        protected void checkNotObserved() {
            if (cachedVariants != null) {
                DeprecationLogger.deprecateBehaviour("Gradle Module Metadata is modified after an eagerly populated publication.")
                    .willBecomeAnErrorInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top