Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,465 for revoke (0.17 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

    import org.codehaus.plexus.logging.Logger;
    import org.eclipse.aether.ConfigurationProperties;
    import org.eclipse.aether.util.ConfigUtils;
    
    // TODO remove the update check manager
    // TODO separate into retriever and publisher
    // TODO remove hardcoding of checksum logic
    
    /**
     * Manages <a href="https://maven.apache.org/wagon">Wagon</a> related operations in Maven.
     */
    @Named
    @Singleton
    @Deprecated
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/prerm

    #
    # This script is executed in the pre-remove phase
    #
    #   On Debian,
    #       $1=remove    : indicates a removal
    #       $1=upgrade   : indicates an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    STOP_REQUIRED=false
    
    case "$1" in
    
        # Debian ####################################################
        remove)
            STOP_REQUIRED=true
        ;;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. ci/official/README.md

    # Advanced: Use Remote Build Execution (RBE) (internal developers only)
    #
    #   RBE dramatically speeds up builds and testing. It also gives you a
    #   public URL to share your build results with collaborators. However,
    #   it is only available to a limited set of internal TensorFlow developers.
    #
    #   RBE is incompatible with local caching, so you must remove
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postinst

            systemctl daemon-reload
            systemctl restart fess.service || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
                invoke-rc.d fess start || true
            else
                /etc/init.d/fess restart || true
            fi
    
        # older suse linux distributions do not ship with systemd
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    ``MinIO`` uses `go mod` to manage its dependencies.
    
    - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file.
    
    To remove a dependency
    
    - Edit your code and remove the import reference.
    - Run `go mod tidy` in the source folder to remove dependency from `go.mod` file.
    
    ### What are the coding guidelines for MinIO?
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Aug 05 18:35:53 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingQueue.java

        }
      }
    
      /**
       * A sensible definition of {@link #poll} in terms of {@link #remove}. If you override {@link
       * #remove}, you may wish to override {@link #poll} to forward to this implementation.
       *
       * @since 7.0
       */
      @CheckForNull
      protected E standardPoll() {
        try {
          return remove();
        } catch (NoSuchElementException caught) {
          return null;
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. cmd/tier.go

    var (
    	errTierMissingCredentials = AdminError{
    		Code:       "XMinioAdminTierMissingCredentials",
    		Message:    "Specified remote credentials are empty",
    		StatusCode: http.StatusForbidden,
    	}
    
    	errTierBackendInUse = AdminError{
    		Code:       "XMinioAdminTierBackendInUse",
    		Message:    "Specified remote tier is already in use",
    		StatusCode: http.StatusConflict,
    	}
    
    	errTierTypeUnsupported = AdminError{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:44:05 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingQueue.java

        }
      }
    
      /**
       * A sensible definition of {@link #poll} in terms of {@link #remove}. If you override {@link
       * #remove}, you may wish to override {@link #poll} to forward to this implementation.
       *
       * @since 7.0
       */
      @CheckForNull
      protected E standardPoll() {
        try {
          return remove();
        } catch (NoSuchElementException caught) {
          return null;
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

                  @Override
                  public String toString() {
                    return map.toString();
                  }
    
                  @Override
                  public @Nullable String remove(Object key) {
                    return map.remove(key);
                  }
    
                  class EntrySet extends AbstractSet<Map.Entry<String, String>> {
                    @Override
                    public Iterator<Entry<String, String>> iterator() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (darwin-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
    pkg syscall (darwin-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
    pkg syscall (darwin-386), func Revoke(string) error
    pkg syscall (darwin-386), func RouteRIB(int, int) ([]uint8, error)
    pkg syscall (darwin-386), func Seek(int, int64, int) (int64, error)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top