Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 503 for remSign (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentContainerInternal.java

     */
    public interface SoftwareComponentContainerInternal extends SoftwareComponentContainer {
        /**
         * Get the main component of a project.
         * <p>
         * This method will remain internal until we pinpoint what a "main" component truly is,
         * and if it is conceptually necessary.
         */
        Property<SoftwareComponent> getMainComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 15:02:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. hack/update-golangci-lint-config.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_solaris_test.go

    			// and TCP_KEEPCNT are set, otherwise it will remain the default value.
    			tcpKeepAliveAbortThreshold = cfg.Interval * time.Duration(cfg.Count)
    		}
    	} else {
    		cfg.Interval = cfg.Interval * time.Duration(cfg.Count)
    		// Either Interval or Count is set to a negative value, TCP_KEEPALIVE_ABORT_THRESHOLD
    		// will remain the default value, so use the old Interval for the subsequent test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/ProcessResources.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Copies resources from their source to their target directory, potentially processing them.
     * Makes sure no stale resources remain in the target directory.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class ProcessResources extends Copy {
    
        @Override
        protected void copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                    log.debug("Server " + dr.server + " path " + reqPath + " remain " + reqPath.substring(consumed) + " path consumed " + consumed);
                }
                dr.pathConsumed = consumed;
            }
            else {
                if ( log.isDebugEnabled() ) {
                    log.debug("Node " + ref.getNode() + " path " + reqPath + " remain " + reqPath.substring(consumed) + " path consumed " + consumed);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
        public BuildResumptionData(final List<String> remainingProjects) {
            this.remainingProjects = remainingProjects;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/insecure.go

    	if req.Host == "" && req.URL.Host == "" {
    		http.Error(w, "no Host provided in request", http.StatusBadRequest)
    		return
    	}
    
    	// Note that if the handler is wrapped with http.StripPrefix, the prefix
    	// will remain stripped in the redirected URL, preventing redirect loops
    	// if the scheme is already "http".
    
    	u := *req.URL
    	u.Scheme = "http"
    	u.User = nil
    	u.Host = req.Host
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. doc/next/5-toolchain.md

    Similarly, the linker disallows references to such symbols from assembly
    code.
    For backward compatibility, existing usages of `//go:linkname` found in
    a large open-source code corpus remain supported.
    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionHost.java

     *
     * <p>The purpose of this type is to be a configuration-cache compatible representation of the thing
     * being resolved. This type should remain as minimal as possible.</p>
     */
    public interface ResolutionHost {
    
        DisplayName displayName();
    
        default String getDisplayName() {
            return displayName().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_use_dot.txt

    # If the current directory lacks a go.mod file, 'go work use .'
    # should remove its entry.
    mv go.mod go.mod.bak
    go work use .
    cmp ../../go.work ../../go.work.orig
    
    # If the path is absolute, it should remain absolute.
    mv go.mod.bak go.mod
    go work use $PWD
    grep -count=1 '^use ' ../../go.work
    grep '^use ["]?'$PWD'["]?$' ../../go.work
    
    # An absolute path should replace an entry for the corresponding relative path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top