Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 931 for Everything (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/SubVersionSelectorTest.groovy

            accept("1.+", "1.2")
            accept("1.2.3+", "1.2.3.11")
            !accept("1+", "2")
            !accept("1.+", "11")
            !accept("1.2.3+", "1.2")
        }
    
        def "'+' is a valid selector which accepts everything"() {
            expect:
            accept("+", "11")
            accept("+", "1.2")
            accept("+", "1.2.3.11")
            accept("+", "2")
            accept("+", "11")
            accept("+", "1.2")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/encoding/gob/error.go

    // license that can be found in the LICENSE file.
    
    package gob
    
    import "fmt"
    
    // Errors in decoding and encoding are handled using panic and recover.
    // Panics caused by user error (that is, everything except run-time panics
    // such as "index out of bounds" errors) do not leave the file that caused
    // them, but are instead turned into plain error returns. Encoding and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:03:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractInvocation.java

     */
    
    package org.gradle.internal.classpath.intercept;
    
    import static org.gradle.internal.classpath.intercept.InvocationUtils.unwrap;
    
    /**
     * A base implementation of the Invocation that provides everything except {@link #callOriginal()}.
     *
     * @param <R> the type of the receiver
     */
    public abstract class AbstractInvocation<R> implements Invocation {
        protected final R receiver;
        protected final Object[] args;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:55 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kube/kclient/client.go

    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsOnBuildStarted(SnapshotHierarchy root, WatchMode watchMode, List<File> unsupportedFileSystems);
    
        /**
         * Remove everything from the root which can't be kept after the current build finished.
         *
         * @see FileWatcherRegistry#updateVfsBeforeBuildFinished(SnapshotHierarchy, int, List)
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. docs/distributed/CONFIG.md

    MinIO now supports starting the server arguments and configuration via a YAML configuration file. This YAML configuration describes everything that can be configured in a MinIO setup, such as '--address', '--console-address' and command line arguments for the MinIO server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	c.crdMutationCache.Mutation(updatedObj)
    
    	// we updated our status, so we may be releasing a name.  When this happens, we need to rekick everything in our group
    	// if we fail to rekick, just return as normal.  We'll get everything on a resync
    	if err := c.requeueAllOtherGroupCRDs(key); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/GeneralRange.java

      static <T extends @Nullable Object> GeneralRange<T> all(Comparator<? super T> comparator) {
        return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN);
      }
    
      /**
       * Returns everything above the endpoint relative to the specified comparator, with the specified
       * endpoint behavior.
       */
      static <T extends @Nullable Object> GeneralRange<T> downTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/image/image.go

    	// We are obviously interested only in the tag, but for the purpose of properly matching it, we also match the digest
    	// (if present). All the parts before the tag we match in a single match everything (but not greedy) group.
    	// All matched sub-groups, except the tag one, get thrown away. Hence, in a result of FindStringSubmatch, if a tag
    	// matches, it's going to be the second returned element (after the full match).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/site/apt/index.apt

     Color is managed by <<<MavenSimpleLogger>>>, created by <<<MavenSimpleLoggerFactory>>>, and injected by <<<StaticLoggerBinder>>>: everything else is
     copied at build time from {{{https://www.slf4j.org/api/org/slf4j/simple/SimpleLogger.html}SLF4J Simple}}
    
    * See Also
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top