Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for tracking (0.17 sec)

  1. src/testing/testing.go

    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
    			return
    		}
    		if err := trace.Start(f); err != nil {
    			fmt.Fprintf(os.Stderr, "testing: can't start tracing: %s\n", err)
    			f.Close()
    			return
    		}
    		// Could save f so after can call f.Close; not worth the effort.
    	}
    	if *blockProfile != "" && *blockProfileRate >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	if p.unschedulablePods.get(pod) != nil {
    		logger.Error(nil, "Error: pod is already in the unschedulable queue", "pod", klog.KObj(pod))
    		p.unschedulablePods.delete(pod, gated)
    	}
    	// Delete pod from backoffQ if it is backing off
    	if err := p.podBackoffQ.Delete(pInfo); err == nil {
    		logger.Error(nil, "Error: pod is already in the podBackoff queue", "pod", klog.KObj(pod))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers.go

    }
    
    func isAllocatableEvictionThreshold(threshold evictionapi.Threshold) bool {
    	return threshold.Signal == evictionapi.SignalAllocatableMemoryAvailable
    }
    
    // buildSignalToRankFunc returns ranking functions associated with resources
    func buildSignalToRankFunc(withImageFs bool, imageContainerSplitFs bool) map[evictionapi.Signal]rankFunc {
    	signalToRankFunc := map[evictionapi.Signal]rankFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * These two URLs are semantically identical, but `java.net.URI` disagrees:
     *
     *  * http://host:80/
     *
     *  * http://host
     *
     * Both the unnecessary port specification (`:80`) and the absent trailing slash (`/`) cause URI to
     * bucket the two URLs separately. This harms URI's usefulness in collections. Any application that
     * stores information-per-URL will need to either canonicalize manually, or suffer unnecessary
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    	if checksum != nil && checksum.Type.Trailing() {
    		// Not officially supported in POST requests.
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, errors.New("Trailing checksums not available for POST operations"))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	// the actual continuation PC, which is computed differently depending on
    	// this flag and a few other things.
    	unwindTrap
    
    	// unwindJumpStack indicates that, if the traceback is on a system stack, it
    	// should resume tracing at the user stack when the system stack is
    	// exhausted.
    	unwindJumpStack
    )
    
    // An unwinder iterates the physical stack frames of a Go sack.
    //
    // Typical use of an unwinder looks like:
    //
    //	var u unwinder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    istio.io/rev: 1-7-6 release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-7-6.istio-system.svc:15012 proxyMetadata: DNS_AGENT: "" tracing: zipkin: address: zipkin.istio-system:9411 disableMixerHttpRepo: true enablePrometheusMerg: true rootNamespace: istio-system trustDomain: cluster.local --- apiVersion: v1 kind: ConfigMap metadata: name: istio-sidecar-injector-1-7-6 namespace: istio-system...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

     * to referencing files and directories, jCIFS can also address servers,
     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
     * 'smb://' URLs it is necessary to first call the static
     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. src/time/time.go

    }
    
    // fmtFrac formats the fraction of v/10**prec (e.g., ".12345") into the
    // tail of buf, omitting trailing zeros. It omits the decimal
    // point too when the fraction is 0. It returns the index where the
    // output bytes begin and the value v/10**prec.
    func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) {
    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    	for i := 0; i < prec; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    		if p.As != AMOV {
    			p.Ctxt.Diag("%v: unsupported constant load", p)
    			return nil
    		}
    
    		// For constants larger than 32 bits in size that have trailing zeros,
    		// use the value with the trailing zeros removed and then use a SLLI
    		// instruction to restore the original constant.
    		// For example:
    		// 	MOV $0x8000000000000000, X10
    		// becomes
    		// 	MOV $1, X10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top