Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for consuming (4.91 sec)

  1. src/runtime/runtime1.go

    		// but doesn't affect many of the statistics that
    		// MADV_DONTNEED does until the memory is actually
    		// reclaimed. This generally leads to poor user
    		// experience, like confusing stats in top and other
    		// monitoring tools; and bad integration with
    		// management systems that respond to memory usage.
    		// Hence, default to MADV_DONTNEED.
    		debug.madvdontneed = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    				if argRegs > 0 {
    					r = unsafe.Pointer(&regs.Ints)
    				} else {
    					// frame is effectively uninitialized
    					// memory. That means we have to clear
    					// it before writing to it to avoid
    					// confusing the write barrier.
    					*(*[2]uintptr)(frame) = [2]uintptr{}
    				}
    				switch f.fint.Kind_ & abi.KindMask {
    				case abi.Pointer:
    					// direct use of pointer
    					*(*unsafe.Pointer)(r) = f.arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/security/oauth2-scopes.md

    It will have a property `scopes` with a list containing all the scopes required by itself and all the dependencies that use this as a sub-dependency. That means, all the "dependants"... this might sound confusing, it is explained again later below.
    
    The `security_scopes` object (of class `SecurityScopes`) also provides a `scope_str` attribute with a single string, containing those scopes separated by spaces (we are going to use it).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    		latencies = append(latencies, time.Since(start))
    	}
    	// Make sure to stop the timer before we wait! The load created above
    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

        * This solves a vulnerability that could allow denial of service attacks by using many small multipart fields/files (parts), consuming high CPU and memory.
        * Only applications using forms (e.g. file uploads) could be affected.
        * For most cases, upgrading won't have any breaking changes.
    
    ## 0.91.0
    
    ### Upgrades
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            message += " ";
          }
          if (shouldShowExtraNanos) {
            message += overWaitLeftoverNanos + " nanoseconds ";
          }
    
          message += "delay)";
        }
        // It's confusing to see a completed future in a timeout message; if isDone() returns false,
        // then we know it must have given a pending toString value earlier. If not, then the future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. build/common.sh

    # container over the local network.
    function kube::build::sync_to_container() {
      kube::log::status "Syncing sources to container"
    
      kube::build::start_rsyncd_container
    
      # rsync filters are a bit confusing.  Here we are syncing everything except
      # output only directories and things that are not necessary like the git
      # directory and generated files. The '- /' filter prevents rsync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    		err := os.WriteFile(filepath.Join(tmpdir, name), []byte(content), 0666)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	// Test various undefined references. Because of issue #29852,
    	// this used to give confusing error messages because the
    	// linker would find an undefined reference to "zero" created
    	// by the runtime package.
    
    	write("go.mod", "module testunresolved\n")
    	write("main.go", `package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    			return
    		case *Func:
    			// TODO(gri) Using derefStructPtr may result in methods being found
    			// that don't actually exist. An error either way, but the error
    			// message is confusing. See: https://play.golang.org/p/al75v23kUy ,
    			// but go/types reports: "invalid argument: x.m is a method value".
    			check.errorf(arg0, InvalidOffsetof, invalidArg+"%s is a method value", arg0)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_inbound.go

    		l.FilterChains = append(l.FilterChains, chains...)
    	}
    	// If there are no filter chains, populate a dummy one that never matches. Envoy doesn't allow no chains, but removing the
    	// entire listeners makes the errors logs more confusing (instead of "no filter chain found" we have no listener at all).
    	if len(l.FilterChains) == 0 {
    		l.FilterChains = []*listener.FilterChain{{
    			Name: model.VirtualInboundBlackholeFilterChainName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top