Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for newBoss (0.1 sec)

  1. pkg/kubelet/config/common.go

    	if err != nil {
    		return false, pods, err
    	}
    
    	newPods, ok := obj.(*api.PodList)
    	// Check whether the object could be converted to list of pods.
    	if !ok {
    		err = fmt.Errorf("invalid pods list: %#v", obj)
    		return false, pods, err
    	}
    
    	// Apply default values and validate pods.
    	for i := range newPods.Items {
    		newPod := &newPods.Items[i]
    		if newPod.Name == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/syscall/fs_js.go

    	if err != nil {
    		return 0, err
    	}
    
    	var newPos int64
    	switch whence {
    	case 0:
    		newPos = offset
    	case 1:
    		newPos = f.pos + offset
    	case 2:
    		var st Stat_t
    		if err := Fstat(fd, &st); err != nil {
    			return 0, err
    		}
    		newPos = st.Size + offset
    	default:
    		return 0, errnoErr(EINVAL)
    	}
    
    	if newPos < 0 {
    		return 0, errnoErr(EINVAL)
    	}
    
    	f.seeked = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. src/mdo/model.vm

                Map<Object, InputLocation> newlocs = this.locations != null ? this.locations : Collections.emptyMap();
                Map<Object, InputLocation> oldlocs = this.base != null && this.base.locations != null ? this.base.locations : Collections.emptyMap();
                Map<Object, InputLocation> locations = new HashMap<>();
                locations.put("", newlocs.containsKey("") ? newlocs.get("") : oldlocs.get(""));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				trialStep = fmt.Sprintf("trial%d-%d", i, j)
    				var newPLs []*flowcontrol.PriorityLevelConfiguration
    				var newFSs []*flowcontrol.FlowSchema
    				newPLs, _, desiredPLNames, newBadPLNames = genPLs(rng, trialStep, persistingPLNames, 1+rng.Intn(4))
    				newFSs, _, newFTRs, newCatchAlls = genFSs(t, rng, trialStep, desiredPLNames, newBadPLNames, 1+rng.Intn(6))
    
    				if testDebugLogs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/strategy.go

    		if newSS.Spec.UpdateStrategy.RollingUpdate != nil {
    			newSS.Spec.UpdateStrategy.RollingUpdate.MaxUnavailable = nil
    		}
    	}
    	if !utilfeature.DefaultFeatureGate.Enabled(features.StatefulSetStartOrdinal) {
    		if oldSS == nil || oldSS.Spec.Ordinals == nil {
    			// Reset Spec.Ordinals to the default value (nil).
    			newSS.Spec.Ordinals = nil
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // names.
    func (meal *cfgMeal) digestFlowSchemasLocked(newFSs []*flowcontrol.FlowSchema) {
    	fsSeq := make(apihelpers.FlowSchemaSequence, 0, len(newFSs))
    	fsMap := make(map[string]*flowcontrol.FlowSchema, len(newFSs))
    	var haveExemptFS, haveCatchAllFS bool
    	for i, fs := range newFSs {
    		otherFS := fsMap[fs.Name]
    		if otherFS != nil {
    			// This client is forbidden to do this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. cmd/bootstrap-peer-server.go

    	return getServerSystemCfg(), nil
    }
    
    var serverVerifyHandler = grid.NewSingleHandler[*grid.MSS, *ServerSystemConfig](grid.HandlerServerVerify, grid.NewMSS, func() *ServerSystemConfig { return &ServerSystemConfig{} })
    
    // registerBootstrapRESTHandlers - register bootstrap rest router.
    func registerBootstrapRESTHandlers(gm *grid.Manager) {
    	server := &bootstrapRESTServer{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

              if (!operations->contains(successor) &&
                  !ops_to_avoid.contains(successor)) {
                new_ops.insert(successor);
                operations->insert(successor);
              }
            }
          }
        }
        ops_to_process.swap(new_ops);
        new_ops.clear();
      }
    }
    
    TF::StatefulPartitionedCallOp MakeFuncCaller(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    	if len(columns) != len(valueFuncs) {
    		return fmt.Errorf("cannot prepend columns, unmatched value functions")
    	}
    	if len(columns) == 0 {
    		return nil
    	}
    
    	// Compute the new rows
    	newRows := make([][]interface{}, len(table.Rows))
    	for i := range table.Rows {
    		newCells := make([]interface{}, 0, len(columns)+len(table.Rows[i].Cells))
    
    		if pos == end {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/term/terminal.go

    	t.queue(op)
    }
    
    const maxLineLength = 4096
    
    func (t *Terminal) setLine(newLine []rune, newPos int) {
    	if t.echo {
    		t.moveCursorToPos(0)
    		t.writeLine(newLine)
    		for i := len(newLine); i < len(t.line); i++ {
    			t.writeLine(space)
    		}
    		t.moveCursorToPos(newPos)
    	}
    	t.line = newLine
    	t.pos = newPos
    }
    
    func (t *Terminal) advanceCursor(places int) {
    	t.cursorX += places
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
Back to top