Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for MatchNode (0.37 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

        /**
         * Called when the build is finished.
         *
         * This operation happens in the context of executing the build from the client's perspective.
         */
        void beforeBuildFinished(WatchMode watchMode, VfsLogging vfsLogging, WatchLogging watchLogging, BuildOperationRunner buildOperationRunner, int maximumNumberOfWatchedHierarchies);
    
        /**
         * Called after the build is finished.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

            if (continuousBuild && watchFileSystemMode == WatchMode.DEFAULT) {
                // Try to watch as much as possible when using continuous build.
                watchFileSystemMode = WatchMode.ENABLED;
            }
            if (watchFileSystemMode.isEnabled()) {
                dropVirtualFileSystemIfRequested(options, virtualFileSystem);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

            update(root);
        }
    
        @Override
        public final SnapshotHierarchy updateVfsOnBuildStarted(SnapshotHierarchy root, WatchMode watchMode, List<File> unsupportedFileSystems) {
            SnapshotHierarchy newRoot = watchableHierarchies.removeUnwatchableContentOnBuildStart(root, createInvalidator(), watchMode, unsupportedFileSystems);
            newRoot = invalidateMovedDirectoriesOnBuildStarted(newRoot);
            if (root != newRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

        /**
         * Remove watched hierarchies that have been moved.
         *
         * @see FileWatcherRegistry#updateVfsOnBuildStarted(SnapshotHierarchy, WatchMode, java.util.List)
         */
        @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.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         *
         * For example, this method checks if watched hierarchies are where we left them after the previous build.
         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsOnBuildStarted(SnapshotHierarchy root, WatchMode watchMode, List<File> unsupportedFileSystems);
    
        /**
         * Updates the VFS and the watchers before the build finishes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane.go

    			taintStrs = append(taintStrs, taint.ToString())
    		}
    		fmt.Printf("[mark-control-plane] Marking the node %s as control-plane by adding the taints %v\n", controlPlaneName, taintStrs)
    	}
    
    	return apiclient.PatchNode(client, controlPlaneName, func(n *v1.Node) {
    		markControlPlaneNode(n, taints)
    	})
    }
    
    func taintExists(taint v1.Taint, taints []v1.Taint) bool {
    	for _, t := range taints {
    		if t == taint {
    			return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 13 15:45:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/patchnode/patchnode_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package patchnode
    
    import (
    	"bytes"
    	"encoding/json"
    	"net/http"
    	"net/http/httptest"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeletphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubelet"
    	patchnodephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/patchnode"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/uploadconfig"
    )
    
    var (
    	uploadKubeadmConfigLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    		Upload the kubeadm ClusterConfiguration to a ConfigMap called %s in the %s namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top