Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withReplacedChild (0.63 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SingletonChildMap.java

                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(RESULT newChild) {
                    return withReplacedChild(entry.getPath(), newChild);
                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(String newChildPath, RESULT newChild) {
                    return getChildMap().withReplacedChild(newChildPath, newChild);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractListChildMap.java

                    @Override
                    public ChildMap<RESULT> withReplacedChild(RESULT newChild) {
                        return withReplacedChild(childPath, newChild);
                    }
    
                    @Override
                    public ChildMap<RESULT> withReplacedChild(String newChildPath, RESULT newChild) {
                        return getChildMap().withReplacedChild(childIndex, newChildPath, newChild);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:11:25 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractStorePathRelationshipHandler.java

            this.caseSensitivity = caseSensitivity;
            this.handler = handler;
        }
    
        public abstract ChildMap<T> withReplacedChild(T newChild);
    
        public abstract ChildMap<T> withReplacedChild(String newChildPath, T newChild);
    
        public abstract ChildMap<T> withNewChild(String newChildPath, T newChild);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractInvalidateChildHandler.java

            this.handler = handler;
        }
    
        public abstract ChildMap<RESULT> getChildMap();
    
        public abstract ChildMap<RESULT> withReplacedChild(RESULT newChild);
    
        public abstract ChildMap<RESULT> withReplacedChild(String newChildPath, RESULT newChild);
    
        public abstract ChildMap<RESULT> withRemovedChild();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top