Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 179 for preset (1.03 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	for _, v := range vv {
    		v.reset(OpInvalid)
    		// Note: leave v.Block intact.  The Block field is used after clobber.
    	}
    	return true
    }
    
    // clobberIfDead resets v when use count is 1. Returns true.
    // clobberIfDead is used by rewrite rules to decrement
    // use counts of v's args when v is dead and never used.
    func clobberIfDead(v *Value) bool {
    	if v.Uses == 1 {
    		v.reset(OpInvalid)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    	t.Run("finalizer not present", func(t *testing.T) {
    		var w strings.Builder
    		goroutineProf.WriteTo(&w, 1)
    		prof := w.String()
    		if includesFinalizer(prof) {
    			t.Errorf("profile includes finalizer (but finalizer should be marked as system):\n%s", prof)
    		}
    	})
    
    	// The finalizer goroutine should show up when it's running user code.
    	t.Run("finalizer present", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	fi, err := Lstat(s.formatFile)
    	if err != nil {
    		// If the disk is still not initialized.
    		if osIsNotExist(err) {
    			if err = Access(s.drivePath); err == nil {
    				// Disk is present but missing `format.json`
    				return nil, errUnformattedDisk
    			}
    			if osIsNotExist(err) {
    				return nil, errDiskNotFound
    			} else if osIsPermission(err) {
    				return nil, errDiskAccessDenied
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. src/cmd/compile/internal/types2/expr.go

    				}
    			}
    
    		case *Slice:
    			// Prevent crash if the slice referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			check.indexedElts(e.ElemList, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        }
    
        protected Logger getLogger() {
            return logger;
        }
    
        @Override
        public GradleExecuter reset() {
            args.clear();
            tasks.clear();
            initScripts.clear();
            workingDir = null;
            projectDir = null;
            buildScript = null;
            settingsFile = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    These include sophisticated version constraints (`prefer`, `strictly`, `reject`), dependency constraints, and `platform` dependencies.
    
    If you have been using the `IMPROVED_POM_SUPPORT` feature preview, playing with constraints or prefer, reject and other specific version indications, then make sure to take a good look at your dependency resolution results.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    nextColor = matcher.group(1);
                    if (ANSI_RESET.equals(nextColor)) {
                        // last ANSI escape code is reset: no next color
                        nextColor = "";
                    }
                }
    
                // effective line, with indent and reset if end is colored
                line = indent + line + ("".equals(nextColor) ? "" : ANSI_RESET);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    	}
    
    	// cmd/distpack deletes GOROOT/test, so skip the test if it isn't present.
    	// cmd/distpack also requires GOROOT/VERSION to exist, so use that to
    	// suppress false-positive skips.
    	if _, err := os.Stat(common.gorootTestDir); os.IsNotExist(err) {
    		if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil {
    			t.Skipf("skipping: GOROOT/test not present")
    		}
    	}
    
    	for _, dir := range dirs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		zoneNoExecuteTainterWorker.Try(logger, func(value scheduler.TimedValue) (bool, time.Duration) {
    			node, err := nc.nodeLister.Get(value.Value)
    			if apierrors.IsNotFound(err) {
    				logger.Info("Node no longer present in nodeLister", "node", klog.KRef("", value.Value))
    				return true, 0
    			} else if err != nil {
    				logger.Info("Failed to get Node from the nodeLister", "node", klog.KRef("", value.Value), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Eager evaluation of `Configuration` attributes
    
    Gradle 8.3 updates the `org.gradle.libraryelements` and `org.gradle.jvm.version` attributes of JVM Configurations to be present at the time of creation, as opposed to previously, where they were only present after the Configuration had been resolved or consumed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top