Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for corerest (0.28 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// TODO: things to consider:
    	//   - if 'LastProbeTime' have gone back in time its probably an error, currently we ignore it,
    	//   - currently only correct Ready State transition outside of Node Controller is marking it ready by Kubelet, we don't check
    	//     if that's the case, but it does not seem necessary.
    	var savedCondition *v1.NodeCondition
    	var savedLease *coordv1.Lease
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		watcherIdx:     0,
    		watchers: indexedWatchers{
    			allWatchers:   make(map[namespacedName]watchersMap),
    			valueWatchers: make(map[string]watchersMap),
    		},
    		// TODO: Figure out the correct value for the buffer size.
    		incoming:              make(chan watchCacheEvent, 100),
    		dispatchTimeoutBudget: newTimeBudget(),
    		// We need to (potentially) stop both:
    		// - wait.Until go-routine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    module("org:someArtifact:1.0") {
                        module("org:foo:1.3.0")
                    }
                }
            }
        }
    
        void "previously evicted nodes should contain correct target version"() {
            /*
            a1->b1
            a2->b2->a1
    
            resolution process:
    
            1. stop resolution, resolve conflict a1 vs a2
            2. select a2, restart resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		// 'this', so avoid adding the unqualified function
    		// type to the substitution list.
    		if st.str[0] == 'F' {
    			addSubst = false
    		}
    	}
    
    	var ret AST
    
    	// Use correct substitution for a template parameter.
    	var sub AST
    
    	if btype, ok := builtinTypes[st.str[0]]; ok {
    		ret = &BuiltinType{Name: btype}
    		st.advance(1)
    		if q != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		n, err := io.Copy(io.MultiWriter(buf, md5w), ioutil.HardLimitReader(pReader, maxFanOutSize))
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Set the correct hex md5sum for the fan-out stream.
    		fanOutOpts.MD5Hex = hex.EncodeToString(md5w.Sum(nil))
    
    		concurrentSize := 100
    		if runtime.GOMAXPROCS(0) < concurrentSize {
    			concurrentSize = runtime.GOMAXPROCS(0)
    		}
    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/time/format.go

    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    // there. We look at the beginning of the string for a run of upper-case letters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Change all DT_VARIANT result types in function results to unranked tensor
        // type with element type derived from the corresponding input operand. This
        // is correct because while body's inputs and results have the same type.
        SmallVector<Type, 8> updated_result_types;
        updated_result_types.reserve(num_results);
        if (func_index == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// false, the size of TLS records may be adjusted in an attempt to
    	// improve latency.
    	DynamicRecordSizingDisabled bool
    
    	// Renegotiation controls what types of renegotiation are supported.
    	// The default, none, is correct for the vast majority of applications.
    	Renegotiation RenegotiationSupport
    
    	// KeyLogWriter optionally specifies a destination for TLS master secrets
    	// in NSS key log format that can be used to allow external programs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			repl := " " + gofmtPos(expr, old.Pos())
    			end := fset.Position(old.End())
    			// Subtract 1 from the column if we are going to
    			// append a close parenthesis. That will set the
    			// correct column for the following characters.
    			sub := 0
    			if r.Name.Kind != "type" {
    				sub = 1
    			}
    			if end.Column > sub {
    				repl = fmt.Sprintf("%s /*line :%d:%d*/", repl, end.Line, end.Column-sub)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. cmd/xl-storage_test.go

    	if err := storage.AppendFile(context.Background(), volName, fileName, []byte("a")); err != nil {
    		t.Fatal(err)
    	}
    
    	// Check if VerifyFile reports the incorrect file length (the correct length is `size+1`)
    	if err := storage.storage.bitrotVerify(context.Background(), pathJoin(path, volName, fileName), size, algo, hashBytes, 0); err == nil {
    		t.Fatal("expected to fail bitrot check")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
Back to top