Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for happen (0.15 sec)

  1. cmd/admin-handlers.go

    		hostErrs = append(hostErrs, globalNotificationSys.StartProfiling(profiler)...)
    
    		// Start profiling locally as well.
    		prof, err := startProfiler(profiler)
    		if err != nil {
    			hostErrs = append(hostErrs, NotificationPeerErr{
    				Host: *thisAddr,
    				Err:  err,
    			})
    		} else {
    			globalProfiler[profiler] = prof
    			hostErrs = append(hostErrs, NotificationPeerErr{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    					rMap[id] = rl
    				}
    			}
    		}
    	}
    
    	// append now
    	for id, rl := range newRMap {
    		// if rule is already in original list update non tranisition details with latest
    		// else simply add to the map. This may happen if ILM expiry replication
    		// was disabled for sometime and rules were updated independently in different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	// Even though RecoverVolumeExpansionFailure feature gate is enabled, it appears that we are running with older version
    	// of resize controller, which will not populate allocatedResource and resizeStatus. This can happen because of version skew
    	// and hence we are going to keep expanding using older logic.
    	if resizeStatus == "" && allocatedResource == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    					podStatusUpdates++
    				}
    			}
    			if podStatusUpdates != item.expectedPodStatusUpdates {
    				t.Errorf("expect pod status updated to happen %d times, but got %d", item.expectedPodStatusUpdates, podStatusUpdates)
    			}
    		})
    	}
    }
    
    // TestApplyNoExecuteTaints, ensures we just have a NoExecute taint applied to node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			cgoObjects = append(cgoObjects, a.Objdir+"_cgo_flags")
    		}
    		cgoObjects = append(cgoObjects, outObj...)
    		gofiles = append(gofiles, outGo...)
    
    		switch cfg.BuildBuildmode {
    		case "c-archive", "c-shared":
    			b.cacheCgoHdr(a)
    		}
    	}
    
    	var srcfiles []string // .go and non-.go
    	srcfiles = append(srcfiles, gofiles...)
    	srcfiles = append(srcfiles, sfiles...)
    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. pkg/kubelet/kubelet_test.go

    		containerName := fmt.Sprintf("%vcontainer", id)
    		expectedOrder = append(expectedOrder, containerName)
    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    			cStatuses = append(cStatuses, cStatus)
    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    //
    // issue https://github.com/kubernetes/kubernetes/pull/23223
    func TestPodIsNotDeletedByDaemonsetWithEmptyLabelSelector(t *testing.T) {
    	// Create a misconfigured DaemonSet. An empty pod selector is invalid but could happen
    	// if we upgrade and make a backwards incompatible change.
    	//
    	// The node selector matches no nodes which mimics the behavior of kubectl delete.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		}
    		deps = append(deps, "runtime/cgo")
    	}
    	// On ARM with GOARM=5, it forces an import of math, for soft floating point.
    	if cfg.Goarch == "arm" {
    		deps = append(deps, "math")
    	}
    	// Using the race detector forces an import of runtime/race.
    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    func externalNameCases(t TrafficContext) {
    	calls := func(name string, checks ...echo.Checker) []TrafficCall {
    		checks = append(checks, check.OK())
    		ch := []TrafficCall{}
    		for _, c := range t.Apps.A {
    			for _, port := range []echo.Port{ports.HTTP, ports.AutoHTTP, ports.TCP, ports.HTTPS} {
    				c, port := c, port
    				ch = append(ch, TrafficCall{
    					name: port.Name,
    					call: c.CallOrFail,
    					opts: echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	}
    
    	rs.closemu.RLock()
    	defer rs.closemu.RUnlock()
    	return rs.lasterrOrErrLocked(nil)
    }
    
    // rawbuf returns the buffer to append RawBytes values to.
    // This buffer is reused across calls to Rows.Scan.
    //
    // Usage:
    //
    //	rawBytes = rows.setrawbuf(append(rows.rawbuf(), value...))
    func (rs *Rows) rawbuf() []byte {
    	if rs == nil {
    		// convertAssignRows can take a nil *Rows; for simplicity handle it here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top