Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 437 for locations (0.22 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCacheLocations.java

    public interface GlobalCacheLocations {
    
        /**
         * Checks if a given path is inside one of Gradle's global caches.
         */
        boolean isInsideGlobalCache(String path);
    
        /**
         * Returns the cache locations.
         */
        FileHierarchySet getCacheRoots();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/util/cmdutil.go

    }
    
    // GetKubeConfigPath can be used to search for a kubeconfig in standard locations
    // if and empty string is passed to the function. If a non-empty string is passed
    // the function returns the same string.
    func GetKubeConfigPath(file string) string {
    	// If a value is provided respect that.
    	if file != "" {
    		return file
    	}
    	// Find a config in the standard locations using DefaultClientConfigLoadingRules,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/runtime/debug/stack_test.go

    */
    func TestStack(t *testing.T) {
    	b := T(0).method()
    	lines := strings.Split(string(b), "\n")
    	if len(lines) < 6 {
    		t.Fatal("too few lines")
    	}
    
    	// If built with -trimpath, file locations should start with package paths.
    	// Otherwise, file locations should start with a GOROOT/src prefix
    	// (for whatever value of GOROOT is baked into the binary, not the one
    	// that may be set in the environment).
    	fileGoroot := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/BuildLayout.java

    import org.gradle.api.Incubating;
    import org.gradle.api.initialization.Settings;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Provides access to important locations for a Gradle build.
     * <p>
     * An instance of this type can be injected into a settings plugin by
     * annotating a public constructor or method with {@code javax.inject.Inject}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

         */
        @Nullable
        Module findModule(String name) throws UnknownModuleException;
    
        /**
         * Returns the classpath used to search for modules, in addition to default locations in the Gradle distribution (if available). May be empty.
         */
        ClassPath getAdditionalClassPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

                this.distZip = distZip;
            }
    
            /**
             * Returns the location to install the distribution into.
             */
            public File getDistributionDir() {
                return distDir;
            }
    
            /**
             * Returns the location to install the distribution ZIP file to.
             */
            public File getZipFile() {
                return distZip;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    This produces the following output at the start and end of the build:
    
    ----
    $ gradle assemble --watch-fs -Dorg.gradle.vfs.verbose=true
    ----
    ----
    Received 3 file system events since last build while watching 1 locations
    Virtual file system retained information about 2 files, 2 directories and 0 missing files since last build
    > Task :compileJava NO-SOURCE
    > Task :processResources NO-SOURCE
    > Task :classes UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        boolean afterBuildStarted(WatchMode watchingEnabled, VfsLogging vfsLogging, WatchLogging watchLogging, BuildOperationRunner buildOperationRunner);
    
        /**
         * Register a watchable hierarchy.
         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
         * It is also called for the root directories of included builds, and all other nested builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    They are useful for various purposes:
    
    * Setting up enterprise-wide configurations (e.g., custom plugin locations)
    * Configuring properties based on the environment (e.g., developer's machine vs. CI server)
    * Providing user-specific information (e.g., authentication credentials)
    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/peer.go

    		apiServerID,
    		reconciler,
    		serializer,
    	), nil
    }
    
    // CreatePeerEndpointLeaseReconciler creates a apiserver endpoint lease reconciliation loop
    // The peer endpoint leases are used to find network locations of apiservers for peer proxy
    func CreatePeerEndpointLeaseReconciler(c genericapiserver.Config, storageFactory serverstorage.StorageFactory) (reconcilers.PeerEndpointLeaseReconciler, error) {
    	ttl := DefaultPeerEndpointReconcilerTTL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 08:15:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top