Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for Gleason (0.17 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	Name = names.TaintToleration
    	// preScoreStateKey is the key in CycleState to TaintToleration pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    	// ErrReasonNotMatch is the Filter reason status when not matching.
    	ErrReasonNotMatch = "node(s) had taints that the pod didn't tolerate"
    )
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *TaintToleration) Name() string {
    	return Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/make.bash

    # Environment variables that control make.bash:
    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime.go

    		if condition.GetType() == runtimeapi.RuntimeReady && // NetworkReady will not be tested on purpose
    			!condition.GetStatus() {
    			return errors.Errorf(
    				"container runtime condition %q is not true. reason: %s, message: %s",
    				condition.GetType(), condition.GetReason(), condition.GetMessage(),
    			)
    		}
    	}
    
    	return nil
    }
    
    // ListKubeContainers lists running k8s CRI pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/net/ipsock_posix.go

    func ipToSockaddrInet6(ip IP, port int, zone string) (syscall.SockaddrInet6, error) {
    	// In general, an IP wildcard address, which is either
    	// "0.0.0.0" or "::", means the entire IP addressing
    	// space. For some historical reason, it is used to
    	// specify "any available address" on some operations
    	// of IP node.
    	//
    	// When the IP node supports IPv4-mapped IPv6 address,
    	// we allow a listener to listen to the wildcard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. internal/grid/muxserver.go

    }
    
    // disconnect will disconnect the mux.
    // m.recvMu must be locked when calling this function.
    func (m *muxServer) disconnect(msg string, locked bool) {
    	if debugPrint {
    		fmt.Println("Mux", m.ID, "disconnecting. Reason:", msg)
    	}
    	if msg != "" {
    		m.send(message{Op: OpMuxServerMsg, MuxID: m.ID, Flags: FlagPayloadIsErr | FlagEOF, Payload: []byte(msg)})
    	} else {
    		m.send(message{Op: OpDisconnectClientMux, MuxID: m.ID})
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Maintaining Optimal Gradle Build Cache Performance&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    The sole reason to use any build cache is to make builds faster.
    But how much faster can you go when using the cache?
    Measuring the impact is both important and complicated, as cache performance is determined by many factors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top