Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for endMem (0.1 sec)

  1. Makefile.core.mk

    # Our build tools, post jammy, breaks old versions of docker.
    # These old versions are surprisingly common, so build in a check here
    define warning
    Docker version is too old, please upgrade to a newer version.
    endef
    ifneq ($(findstring google,$(HOSTNAME)),)
    warning+=Googlers: go/installdocker\#the-version-of-docker-thats-installed-is-old-eg-1126
    endif
    # The old docker issue manifests as not being able to run *any* binary. So we can test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getZipFile()
    
                    ZipSrc() {
                        // We need a way to count access times, that is why I ended up with configuring it in the task so it has access to countResolved.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. docs/de/docs/async.md

    Dann sagt der Kassierer 💁 „Ich bin mit dem Burger fertig“, indem er Ihre Nummer auf dem Display über der Theke anzeigt, aber Sie springen nicht sofort wie verrückt auf, wenn das Display auf Ihre Nummer springt. Sie wissen, dass niemand Ihnen Ihre Burger wegnimmt, denn Sie haben die Nummer Ihrer Bestellung, und andere Leute haben andere Nummern.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. cmd/admin-heal-ops.go

    	bucket, object string
    
    	// Report healing progress
    	reportProgress bool
    
    	// time at which heal sequence was started
    	startTime time.Time
    
    	// time at which heal sequence has ended
    	endTime time.Time
    
    	// Heal client info
    	clientToken, clientAddress string
    
    	// was this heal sequence force started?
    	forceStarted bool
    
    	// heal settings applied to this heal sequence
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    				return buffer.Bytes(), nil
    			}
    			return nil, err
    		}
    		buffer.Write(line)
    	}
    }
    
    type LineReader struct {
    	reader *bufio.Reader
    }
    
    // Read returns a single line (with '\n' ended) from the underlying reader.
    // An error is returned iff there is an error with the underlying reader.
    func (r *LineReader) Read() ([]byte, error) {
    	var (
    		isPrefix bool  = true
    		err      error = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/generate-clients.md

        ```
    
    Beachten Sie, dass die *Pfadoperationen* die Modelle definieren, welche diese für die Request- und Response-<abbr title="Die eigentlichen Nutzdaten, abzüglich der Metadaten">Payload</abbr> verwenden, indem sie die Modelle `Item` und `ResponseMessage` verwenden.
    
    ### API-Dokumentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    				return fmt.Errorf("previous STW is not ended before a new one (time %d)", ev.Ts)
    			}
    			*evp = ev
    		case EvSTWDone:
    			evp := &evSTW
    			if *evp == nil {
    				return fmt.Errorf("bogus STW end (time %d)", ev.Ts)
    			}
    			*evp = nil
    		case EvGCSweepStart:
    			p := ps[ev.P]
    			if p.evSweep != nil {
    				return fmt.Errorf("previous sweeping is not ended before a new one (time %d)", ev.Ts)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. src/internal/trace/testtrace/validation.go

    		case trace.EventRangeActive:
    			if !v.hasRange(r.Scope, r.Name) {
    				v.addRange(r.Scope, r.Name)
    			}
    		case trace.EventRangeEnd:
    			if !v.hasRange(r.Scope, r.Name) {
    				e.Errorf("inactive range %q on %v ended", r.Name, r.Scope)
    			}
    			v.deleteRange(r.Scope, r.Name)
    		}
    	case trace.EventTaskBegin:
    		// Validate task begin.
    		t := ev.Task()
    		if t.ID == trace.NoTask || t.ID == trace.BackgroundTask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
             * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/trace/gstate.go

    	})
    	gs.syscall.active = false
    	gs.syscall.time = 0
    	gs.syscall.stack = trace.NoStack
    }
    
    // blockedSyscallEnd indicates the point at which the blocked syscall ended. This is distinct
    // and orthogonal to syscallEnd; both must be called if the syscall blocked. This sets up an instant
    // to emit a flow event from, indicating explicitly that this goroutine was unblocked by the system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top