Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 503 for forcing (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

            ALL,
            CONSTRAINTS_ONLY,
            DEPENDENCIES_ONLY,
            FORCED_ALL,
            FORCED_CONSTRAINTS_ONLY,
            FORCED_DEPENDENCIES_ONLY;
    
            DependencyFilter forcing() {
                switch (this) {
                    case ALL:
                        return FORCED_ALL;
                    case CONSTRAINTS_ONLY:
                        return FORCED_CONSTRAINTS_ONLY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package lazyregexp is a thin wrapper over regexp, allowing the use of global
    // regexp variables without forcing them to be compiled at init.
    package lazyregexp
    
    import (
    	"os"
    	"regexp"
    	"strings"
    	"sync"
    )
    
    // Regexp is a wrapper around [regexp.Regexp], where the underlying regexp will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/lazyregexp/lazyre.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package lazyregexp is a thin wrapper over regexp, allowing the use of global
    // regexp variables without forcing them to be compiled at init.
    package lazyregexp
    
    import (
    	"os"
    	"regexp"
    	"strings"
    	"sync"
    )
    
    // Regexp is a wrapper around regexp.Regexp, where the underlying regexp will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_linux_amd64.c

    	/* The memory sanitizer distributed with versions of clang
    	   before 3.8 has a bug: if you call mmap before malloc, mmap
    	   may return an address that is later overwritten by the msan
    	   library.  Avoid this problem by forcing a call to malloc
    	   here, before we ever call malloc.
    
    	   This is only required for the memory sanitizer, so it's
    	   unfortunate that we always run it.  It should be possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. test/chanlinear.go

    					// queue ourselves on the global channel
    					select {
    					case <-c:
    					case <-d:
    					}
    				}
    			}()
    		}
    		for i := 0; i < messages; i++ {
    			// wake each goroutine up, forcing it to dequeue and then enqueue
    			// on the global channel.
    			for _, d := range a {
    				d <- true
    			}
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    [WARNING]
    ====
    Forcing a version of a dependency requires a conscious decision.
    Changing the version of a transitive dependency might lead to runtime errors if external libraries do not properly function without them.
    Consider upgrading your source code to use a newer version of the library as an alternative approach.
    ====
    
    In general, forcing dependencies is done to downgrade a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

    import javax.annotation.CheckForNull;
    import java.io.PrintStream;
    
    /**
     * An entry point is the point at which execution will never return from.
     * <p>
     * Its purpose is to consistently apply our completion logic of forcing the JVM
     * to exit at a certain point instead of waiting for all threads to die, and to provide
     * some consistent unhandled exception catching.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/note_test.go

    	}
    	if id != buildID {
    		t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external)", id, buildID)
    	}
    
    	switch runtime.GOOS {
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
    		// Test while forcing use of the gold linker, since in the past
    		// we've had trouble reading the notes generated by gold.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

        ModuleVersionSelector getRequested();
    
        /**
         * Allows to override the version when the dependency {@link #getRequested()} is resolved.
         * Can be used to select a version that is different than requested.
         * Forcing modules via {@link ResolutionStrategy#force(Object...)} uses this capability.
         * Configuring a version different than requested will cause {@link #getTarget()} method
         * return a target module with updated target version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

            });
        }
    
        // Temporary workaround to make incremental sync work. IDEA is requires to execute `help` task
        // to prevent default tasks be executed during sync. This is forcing all projects configuration.
        // Must be removed as soon as IDEA will use appropriate API for avoiding any tasks to be executed.
        private Boolean isEligibleToRunTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top