Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for DELETING (0.18 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    === Removing the local module source
    
    With module artifacts available in a repository, we can now remove the module sources from the build. Since the composite is configured to automatically load available modules, this is as easy as deleting one or more module directories.
    
    ```
    rm -r modules/string-utils
    gradle run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * Watching the build root directories is better since they are less likely to be deleted and
     * nearly no changes to the watched directories are necessary when running builds on the same project.
     *
     * To allow deleting the build root directories, we need to stop watching a build root directory if there are no more snapshots in the VFS inside,
     * since watched directories can't be deleted on Windows.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            invalidateBuildOutputCleanupState()
            waitForChangesToBePickedUp()
            withWatchFs().run ":producer", "--info"
            then:
            output.contains("Deleting stale output file: ${outputFile.absolutePath}")
            executedAndNotSkipped(":producer")
            outputFile.assertExists()
        }
    
        def "detects non-incremental cleanup of incremental tasks"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/util.go

    	defer func() {
    		e := ctx.ConfigKube(cluster).YAML("", dummyValidationVirtualService).Delete()
    		if e != nil {
    			scopes.Framework.Warnf("error deleting dummy virtual service for waiting the validation webhook: %v", e)
    		}
    	}()
    
    	scopes.Framework.Info("Creating dummy virtual service to check for validation webhook readiness")
    	return retry.UntilSuccess(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    								err := cluster.Kube().CoreV1().Services(echos.Namespace.Name()).Delete(
    									context.TODO(), common.ServiceB, metav1.DeleteOptions{})
    								if err != nil {
    									ctx.Fatalf("failed deleting service %s/%s in cluster %s: %v",
    										echos.Namespace, common.ServiceB, cluster.Name(), err)
    								}
    								retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/controller/validatingadmissionpolicystatus/controller.go

    	}
    	defer c.policyQueue.Done(key)
    
    	err := func() error {
    		policy, err := c.policyInformer.Lister().Get(key)
    		if err != nil {
    			if kerrors.IsNotFound(err) {
    				// If not found, the policy is being deleting, do nothing.
    				return nil
    			}
    			return err
    		}
    		return c.reconcile(ctx, policy)
    	}()
    
    	if err == nil {
    		c.policyQueue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	// If the request itself is creating or updating a namespace, then get the
    	// labels from attr.Object, because namespaceLister doesn't have the latest
    	// namespace yet.
    	//
    	// However, if the request is deleting a namespace, then get the label from
    	// the namespace in the namespaceLister, because a delete request is not
    	// going to change the object, and attr.Object will be a DeleteOptions
    	// rather than a namespace object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver_test.go

    		if obj == nil {
    			t.Errorf("%s: Uses[%s] == nil", id.Pos(), id.Value)
    		}
    	}
    
    	// Check that each identifier in the source is found in uses or defs or both.
    	// We need the foundUses/Defs maps (rather than just deleting the found objects
    	// from the uses and defs maps) because syntax.Walk traverses shared nodes multiple
    	// times (e.g. types in field lists such as "a, b, c int").
    	foundUses := make(map[*syntax.Name]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. hack/verify-licenses.sh

    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
    mkdir -p "$ARTIFACTS/logs/"
    
    # Creating a new repository tree 
    # Deleting vendor directory to make go-licenses fetch license URLs from go-packages source repository
    git worktree add -f "${KUBE_TEMP}"/tmp_test_licenses/kubernetes HEAD >/dev/null 2>&1 || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. manifests/charts/istio-cni/values.yaml

          # labelPods will label all pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top