Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for modes (0.18 sec)

  1. cmd/kubelet/app/server.go

    	if err != nil {
    		return err
    	}
    
    	// if in standalone mode, indicate as much by setting all clients to nil
    	switch {
    	case standaloneMode:
    		kubeDeps.KubeClient = nil
    		kubeDeps.EventClient = nil
    		kubeDeps.HeartbeatClient = nil
    		klog.InfoS("Standalone mode, no API client")
    
    	case kubeDeps.KubeClient == nil, kubeDeps.EventClient == nil, kubeDeps.HeartbeatClient == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/go.sum

    github.com/google/cel-go v0.20.1 h1:nDx9r8S3L4pE61eDdt8igGj8rf5kjYR3ILxWIpWNi84=
    github.com/google/cel-go v0.20.1/go.mod h1:kWcIzTsPX0zmQ+H3TirHstLLf9ep5QTsZBN9u4dOYLg=
    github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
    github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U=
    github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "empty_passes",
        hdrs = ["transforms/passes.h"],
        visibility = [
            "//configs/devtools/hawkeye/tflite:__subpackages__",
            "//learning/brain/models/app_benchmarks:__subpackages__",
        ],
        deps = [
            ":tensorflow_lite_passes_inc_gen",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib:quantization_config",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.reporting.model.ModelReport.getFormat()> does not have raw return type assignable to org.gradle.api.provider.Property in (ModelReport.java:0)
    Method <org.gradle.api.reporting.model.ModelReport.isShowHidden()> does not have raw return type assignable to org.gradle.api.provider.Property in (ModelReport.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // complete. While a goroutine's stack is being captured, its
    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    // either a "system" or a "user" goroutine, and the goroutine that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// if all containers are done and should not be started, there is no need to create a new sandbox.
    			// this stops confusing logs on pods whose containers all have exit codes, but we recreate a sandbox before terminating it.
    			//
    			// If ContainerStatuses is empty, we assume that we've never
    			// successfully created any containers. In this case, we should
    			// retry creating the sandbox.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    		arenaHints *arenaHint
    
    		// quarantineList is a list of user arena spans that have been set to fault, but
    		// are waiting for all pointers into them to go away. Sweeping handles
    		// identifying when this is true, and moves the span to the ready list.
    		quarantineList mSpanList
    
    		// readyList is a list of empty user arena spans that are ready for reuse.
    		readyList mSpanList
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. tensorflow/BUILD

            "//third_party/py/tf_keras/...",
            "//third_party/yggdrasil_decision_forests/...",
            "//waymo/accelerator/...",
            "//waymo/ml/cn/...",
            "//waymo/ml/models/...",
        ],
    )
    
    package_group(
        name = "ndarray_tensor_allow_list",
        packages = [
            "//third_party/py/courier/...",
            "//third_party/py/tensorfn/...",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"reflect"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/record"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	       ::= P <type>
    //	       ::= R <type>
    //	       ::= O <type> (C++0x)
    //	       ::= C <type>
    //	       ::= G <type>
    //	       ::= U <source-name> <type>
    //
    //	<builtin-type> ::= various one letter codes
    //	               ::= u <source-name>
    func (st *state) demangleType(isCast bool) AST {
    	if len(st.str) == 0 {
    		st.fail("expected type")
    	}
    
    	addSubst := true
    
    	q := st.cvQualifiers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top