Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for uber (0.12 sec)

  1. pkg/kubelet/kubelet.go

    		if inuserns.RunningInUserNS() {
    			if utilfeature.DefaultFeatureGate.Enabled(features.KubeletInUserNamespace) {
    				// oomwatcher.NewWatcher returns "open /dev/kmsg: operation not permitted" error,
    				// when running in a user namespace with sysctl value `kernel.dmesg_restrict=1`.
    				klog.V(2).InfoS("Failed to create an oomWatcher (running in UserNS, ignoring)", "err", err)
    				oomWatcher = nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		}
    	}))
    	<-conn.closec
    }
    
    func TestIssue11549_Expect100(t *testing.T) {
    	req := reqBytes(`PUT /readbody HTTP/1.1
    User-Agent: PycURL/7.22.0
    Host: 127.0.0.1:9000
    Accept: */*
    Expect: 100-continue
    Content-Length: 10
    
    HelloWorldPUT /noreadbody HTTP/1.1
    User-Agent: PycURL/7.22.0
    Host: 127.0.0.1:9000
    Accept: */*
    Expect: 100-continue
    Content-Length: 10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			warning = fmt.Errorf("workload selector specified without labels") // nolint: stylecheck
    		}
    	}
    
    	return warning, errs
    }
    
    // ValidateSidecar checks sidecar config supplied by user
    var ValidateSidecar = RegisterValidateFunc("ValidateSidecar",
    	func(cfg config.Config) (Warning, error) {
    		errs := Validation{}
    		rule, ok := cfg.Spec.(*networking.Sidecar)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // deduplicated.
        const bool not_returned_by_subgraph = llvm::none_of(
            value.getUsers(),
            [](Operation* user) { return llvm::isa<mlir::func::ReturnOp>(user); });
        // TODO(ashwinm): Check if for stateful tensors, if it is also needed to
        // make the Buffer empty apart from setting the buffer_idx=0 in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			if len(infiles) != 0 {
    				// Coverage instrumentation creates new top level
    				// variables in the target package for things like
    				// meta-data containers, counter vars, etc. To avoid
    				// collisions with user variables, suffix the var name
    				// with 12 hex digits from the SHA-256 hash of the
    				// import path. Choice of 12 digits is historical/arbitrary,
    				// we just need enough of the hash to avoid accidents,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            executer.inDirectory(projectDir2)
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [lib1.jar.txt, lib1.jar]") == 2
    
            // From the Gradle user home cache
            output.count("Transformed") == 0
        }
    
        private void setupProjectInDir(TestFile projectDir) {
            projectDir.file("build.gradle") << resolveTask << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	}
    }
    
    func getMinIOProcessCPUTime() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: processSubsystem,
    		Name:      cpu,
    		Help:      "Total user and system CPU time spent in seconds",
    		Type:      counterMetric,
    	}
    }
    
    func getMinioProcMetrics() *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		if tgt != nil {
    			synchronous = tgt.replicateSync
    		}
    		dsc.Set(newReplicateTargetDecision(tgtArn, replicate, synchronous))
    	}
    	return dsc
    }
    
    // Standard headers that needs to be extracted from User metadata.
    var standardHeaders = []string{
    	xhttp.ContentType,
    	xhttp.CacheControl,
    	xhttp.ContentEncoding,
    	xhttp.ContentLanguage,
    	xhttp.ContentDisposition,
    	xhttp.AmzStorageClass,
    	xhttp.AmzObjectTagging,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			},
    			operands: []*framework.QueuedPodInfo{pInfo1, pInfo2, nil},
    			expected: []*framework.QueuedPodInfo{pInfo2, pInfo1},
    		},
    		{
    			name:                              "New priority queue by user-defined value of podMaxInUnschedulablePodsDuration",
    			podMaxInUnschedulablePodsDuration: 30 * time.Second,
    			operations: []operation{
    				addPodUnschedulablePods,
    				addPodUnschedulablePods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top