Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Appendp (0.14 sec)

  1. 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)
  2. cmd/metrics-v2.go

    			return
    		}
    
    		metrics = make([]MetricV2, 0, 5)
    		metrics = append(metrics, MetricV2{
    			Description: getHealLastActivityTimeMD(),
    			Value:       float64(time.Since(bgSeq.lastHealActivity)),
    		})
    		metrics = append(metrics, getObjectsScanned(bgSeq)...)
    		metrics = append(metrics, getHealedItems(bgSeq)...)
    		metrics = append(metrics, getFailedItems(bgSeq)...)
    		return
    	})
    	return mg
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    			if condition.Status == api.ConditionTrue {
    				status = append(status, string(condition.Type))
    			} else {
    				status = append(status, "Not"+string(condition.Type))
    			}
    		}
    	}
    	if len(status) == 0 {
    		status = append(status, "Unknown")
    	}
    	if obj.Spec.Unschedulable {
    		status = append(status, "SchedulingDisabled")
    	}
    
    	roles := strings.Join(findNodeRoles(obj), ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. cmd/storage-datatypes_gen.go

    	// string "v"
    	o = append(o, 0xa1, 0x76)
    	o = msgp.AppendString(o, z.Volume)
    	// string "ov"
    	o = append(o, 0xa2, 0x6f, 0x76)
    	o = msgp.AppendString(o, z.OrigVolume)
    	// string "fp"
    	o = append(o, 0xa2, 0x66, 0x70)
    	o = msgp.AppendString(o, z.FilePath)
    	// string "uo"
    	o = append(o, 0xa2, 0x75, 0x6f)
    	// map header, size 1
    	// string "np"
    	o = append(o, 0x81, 0xa2, 0x6e, 0x70)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		s.Conditions = append(s.Conditions, status.GeneratePodReadyToStartContainersCondition(pod, podStatus))
    	}
    	allContainerStatuses := append(s.InitContainerStatuses, s.ContainerStatuses...)
    	s.Conditions = append(s.Conditions, status.GeneratePodInitializedCondition(&pod.Spec, allContainerStatuses, s.Phase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    	if len(rule.Issuer) == 0 {
    		errs = multierror.Append(errs, errors.New("issuer must be set"))
    	}
    	for _, audience := range rule.Audiences {
    		if len(audience) == 0 {
    			errs = multierror.Append(errs, errors.New("audience must be non-empty string"))
    		}
    	}
    
    	if len(rule.JwksUri) != 0 {
    		if _, err := security.ParseJwksURI(rule.JwksUri); err != nil {
    			errs = multierror.Append(errs, err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	sr.SetAlign(int32(ctxt.Arch.PtrSize))
    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    // appendString appends s to data, prefixed by its varint-encoded length.
    func appendString(data []byte, s string) []byte {
    	var v [binary.MaxVarintLen64]byte
    	n := binary.PutUvarint(v[:], uint64(len(s)))
    	data = append(data, v[:n]...)
    	data = append(data, s...)
    	return data
    }
    
    // assign addresses to text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    		nodeName := fmt.Sprintf("node%d", i)
    		initialNodes = append(initialNodes, st.MakeNode().Name(nodeName).UID(nodeName).Obj())
    	}
    	// Randomly scatter initial pods onto nodes.
    	for i := 0; i < initialPodNumber; i++ {
    		podName := fmt.Sprintf("scheduled-pod%d", i)
    		assignedNodeName := fmt.Sprintf("node%d", random.Intn(initialNodeNumber))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    }
    
    func listToValues(l *list.List) []interface{} {
    	var values []interface{}
    	for e := l.Front(); e != nil; e = e.Next() {
    		values = append(values, e.Value)
    	}
    	return values
    }
    
    func Test_InFlightPods(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    	pod := st.MakePod().Name("targetpod").UID("pod1").Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			{
    				State: v1.ContainerState{
    					Terminated: &v1.ContainerStateTerminated{
    						FinishedAt: testFinishedAt,
    					},
    				},
    			},
    		}
    		newPod.Finalizers = append(newPod.Finalizers, batch.JobTrackingFinalizer)
    		pods = append(pods, newPod)
    	}
    	return pods
    }
    
    func setPodsStatuses(podIndexer cache.Indexer, job *batch.Job, pendingPods, activePods, succeededPods, failedPods, terminatingPods, readyPods int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top