Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 148 for resumption (0.38 sec)

  1. src/net/http/fs.go

    func ServeFile(w ResponseWriter, r *Request, name string) {
    	if containsDotDot(r.URL.Path) {
    		// Too many programs use r.URL.Path to construct the argument to
    		// serveFile. Reject the request under the assumption that happened
    		// here and ".." may not be wanted.
    		// Note that name might not contain "..", for example if code (still
    		// incorrectly) used filepath.Join(myDir, r.URL.Path).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    	// registers after the wrapped call); in most cases they won't
    	// need to allocate stack space, so it should be OK to mark them
    	// as NOSPLIT in these cases. In addition, my assumption is that
    	// functions written in assembly are NOSPLIT in most (but not all)
    	// cases. In the case of an ABIInternal target that has too many
    	// parameters to fit into registers, the wrapper would need to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/html/template/escape.go

    	if !ok {
    		// Look for a fixed point by assuming c1 as the output context.
    		if c2, ok2 := e.escapeTemplateBody(c1, t); ok2 {
    			c1, ok = c2, true
    		}
    		// Use c1 as the error context if neither assumption worked.
    	}
    	if !ok && c1.state != stateError {
    		return context{
    			state: stateError,
    			err:   errorf(ErrOutputContext, t.Tree.Root, 0, "cannot compute output context for template %s", t.Name()),
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func_test.go

    			// be compared for equality.
    			if fv.Op != gv.Op || fv.Type != gv.Type || fv.AuxInt != gv.AuxInt {
    				return false
    			}
    			if !reflect.DeepEqual(fv.Aux, gv.Aux) {
    				// This makes the assumption that aux values can be compared
    				// using DeepEqual.
    				// TODO(matloob): Aux values may be *gc.Sym pointers in the near
    				// future. Make sure they are canonical.
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                        "An I/O error occurred while checking if the packaged artifact is up-to-date "
                                + "against the build output directory. "
                                + "Continuing with the assumption that it is up-to-date.",
                        e);
                return true;
            }
        }
    
        private boolean hasBeenPackagedDuringThisSession(MavenProject project) {
            boolean packaged = false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. src/runtime/type.go

    //
    // Everywhere in the runtime and reflect packages, it is assumed that
    // there is exactly one *_type per Go type, so that pointer equality
    // can be used to test if types are equal. There is one place that
    // breaks this assumption: buildmode=shared. In this case a type can
    // appear as two different pieces of memory. This is hidden from the
    // runtime and reflect package by the per-module typemap built in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * traditional exclusive locks. Although this increases the false positives that the locks detect
     * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
     * implementation considerably. The assumption is that a user of this factory wishes to eliminate
     * any cyclic acquisition ordering.
     *
     * <p><strong>Explicit Lock Acquisition Ordering</strong>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/testing/testserver.go

    // binaries with the -trimpath option so the simple approach fails however we
    // can consult environment variables to derive the path.
    //
    // The approach taken here works for both go test and bazel on the assumption
    // that if and only if trimpath is passed, we are running under bazel.
    func pkgPath(t Logger) (string, error) {
    	_, thisFile, _, ok := runtime.Caller(0)
    	if !ok {
    		return "", fmt.Errorf("failed to get current file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * traditional exclusive locks. Although this increases the false positives that the locks detect
     * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
     * implementation considerably. The assumption is that a user of this factory wishes to eliminate
     * any cyclic acquisition ordering.
     *
     * <p><strong>Explicit Lock Acquisition Ordering</strong>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    // another running goroutine. The GC assumes that stack writes only
    // happen when the goroutine is running and are only done by that
    // goroutine. Using a write barrier is sufficient to make up for
    // violating that assumption, but the write barrier has to work.
    // typedmemmove will call bulkBarrierPreWrite, but the target bytes
    // are not in the heap, so that will not help. We arrange to call
    // memmove and typeBitsBulkBarrier instead.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top