Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,365 for replaced (0.15 sec)

  1. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        }
      }
    
      // Returned from removeAt() to iterator.remove()
      static class MoveDesc<E> {
        final E toTrickle;
        final E replaced;
    
        MoveDesc(E toTrickle, E replaced) {
          this.toTrickle = toTrickle;
          this.replaced = replaced;
        }
      }
    
      /** Removes and returns the value at {@code index}. */
      private E removeAndGet(int index) {
        E value = elementData(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. hack/update-all.sh

    # Usage: `hack/update-all.sh` or `make update`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    echo "NOTE: ${BASH_SOURCE[0]} has been replaced by 'make update'"
    echo
    echo "The equivalent of this invocation is: "
    echo "    make update"
    echo
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedSingleFileReport.java

        @Inject
        public TaskGeneratedSingleFileReport(String name, Task task) {
            super(name, OutputType.FILE, task);
            // This is for backwards compatibility for plugins that attach a convention mapping to the replaced property
            // TODO - this wiring should happen automatically (and be deprecated too)
            getOutputLocation().convention(getProjectLayout().file(new DefaultProvider<>(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. internal/grid/grid.go

    	},
    }
    
    var internal32KByteBuffer = sync.Pool{
    	New: func() any {
    		m := make([]byte, 0, biggerBufMin)
    		return &m
    	},
    }
    
    // GetByteBuffer can be replaced with a function that returns a small
    // byte buffer.
    // When replacing PutByteBuffer should also be replaced
    // There is no minimum size.
    var GetByteBuffer = func() []byte {
    	b := *internalByteBuffer.Get().(*[]byte)
    	return b[:0]
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java

                    caution.appendChild(document.createTextNode("Incubating"));
                }
                if (propDoc.isReplaced()) {
                    Element caution = document.createElement("caution");
                    td.appendChild(caution);
                    caution.appendChild(document.createTextNode("Replaced"));
                }
                td.appendChild(document.importNode(propDoc.getDescription(), true));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/RemovalNotificationTest.java

      public void testEquals() {
        new EqualsTester()
            .addEqualityGroup(
                RemovalNotification.create("one", 1, RemovalCause.EXPLICIT),
                RemovalNotification.create("one", 1, RemovalCause.REPLACED))
            .addEqualityGroup(RemovalNotification.create("1", 1, RemovalCause.EXPLICIT))
            .addEqualityGroup(RemovalNotification.create("one", 2, RemovalCause.EXPLICIT))
            .testEquals();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_insecure_redirect.txt

    # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/insecure/go/insecure@latest
    stderr 'redirected .* to insecure URL'
    
    # insecure host
    env GOINSECURE=vcs-test.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 934 bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        /**
         * Contains copies of metadata instances in {@link #originalComponents}, except
         * with the component identifier replaced with the foreign counterpart.
         */
        private final CalculatedValueCache<ProjectComponentIdentifier, LocalComponentGraphResolveState> foreignIdentifiedComponents;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        }
      }
    
      // Returned from removeAt() to iterator.remove()
      static class MoveDesc<E> {
        final E toTrickle;
        final E replaced;
    
        MoveDesc(E toTrickle, E replaced) {
          this.toTrickle = toTrickle;
          this.replaced = replaced;
        }
      }
    
      /** Removes and returns the value at {@code index}. */
      private E removeAndGet(int index) {
        E value = elementData(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeLanguage.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    // This should be replaced by some stronger modelling and made open rather than hardcoding a set of source languages here
    public enum NativeLanguage {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top