Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for oldName (0.24 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    			},
    		},
    		"previous-observation": {
    			thresholds: []evictionapi.Threshold{hardThreshold},
    			lastObservedAt: thresholdsObservedAt{
    				hardThreshold: oldTime.Time,
    			},
    			now: now.Time,
    			result: thresholdsObservedAt{
    				hardThreshold: oldTime.Time,
    			},
    		},
    	}
    	for testName, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/shared_test.go

    func resetFileStamps() {
    	chtime := func(path string, info os.FileInfo, err error) error {
    		return os.Chtimes(path, oldTime, oldTime)
    	}
    	reset := func(path string) {
    		if err := filepath.Walk(path, chtime); err != nil {
    			log.Panicf("resetFileStamps failed: %v", err)
    		}
    
    	}
    	reset("../../bin")
    	reset("../../pkg")
    	reset("../../src")
    	reset(gorootInstallDir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        std::unique_ptr<Graph>* graph, std::vector<int>* input_permutation,
        std::vector<int>* output_permutation, NodeDef* node_def) {
      string old_name = node_def->op();
      string new_name =
          absl::StrCat(xla_cluster_name_, "_", new_function_name_, "_", old_name);
      node_def->set_op(new_name);
      node_def->set_name(new_name);
    
      // Later we will run PruneForReverseReachability(), so make sure all original
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    	for i, field := range fields {
    		exactNameIndex[field.name] = &fields[i]
    		// For historical reasons, first folded match takes precedence.
    		if _, ok := foldedNameIndex[string(foldName(field.nameBytes))]; !ok {
    			foldedNameIndex[string(foldName(field.nameBytes))] = &fields[i]
    		}
    	}
    	return structFields{fields, exactNameIndex, foldedNameIndex}
    }
    
    // dominantField looks through the fields, all of which are known to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    		return false
    	}
    
    	// If IdleConnTimeout is set, calculate the oldest
    	// persistConn.idleAt time we're willing to use a cached idle
    	// conn.
    	var oldTime time.Time
    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/encoding/json/decode.go

    				mapElem = reflect.New(elemType).Elem()
    			} else {
    				mapElem.SetZero()
    			}
    			subv = mapElem
    		} else {
    			f := fields.byExactName[string(key)]
    			if f == nil {
    				f = fields.byFoldedName[string(foldName(key))]
    			}
    			if f != nil {
    				subv = v
    				destring = f.quoted
    				for _, i := range f.index {
    					if subv.Kind() == reflect.Pointer {
    						if subv.IsNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. src/runtime/stack.go

    //
    // varp > sp means that the function has a frame;
    // varp == sp means frameless function.
    
    type adjustinfo struct {
    	old   stack
    	delta uintptr // ptr distance from old to new stack (newbase - oldbase)
    
    	// sghi is the highest sudog.elem on the stack.
    	sghi uintptr
    }
    
    // adjustpointer checks whether *vpp is in the old stack described by adjinfo.
    // If so, it rewrites *vpp to point into the new stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    
    	additionalGates := make(map[string]int)
    	for i, newGate := range newGates {
    		additionalGates[newGate.Name] = i
    	}
    
    	for _, oldGate := range oldGates {
    		delete(additionalGates, oldGate.Name)
    	}
    
    	for gate, i := range additionalGates {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    teblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,21...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    diumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top