Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for AddPod (0.17 sec)

  1. pkg/scheduler/internal/cache/snapshot.go

    	for _, pod := range pods {
    		nodeName := pod.Spec.NodeName
    		if _, ok := nodeNameToInfo[nodeName]; !ok {
    			nodeNameToInfo[nodeName] = framework.NewNodeInfo()
    		}
    		nodeNameToInfo[nodeName].AddPod(pod)
    	}
    	imageExistenceMap := createImageExistenceMap(nodes)
    
    	for _, node := range nodes {
    		if _, ok := nodeNameToInfo[node.Name]; !ok {
    			nodeNameToInfo[node.Name] = framework.NewNodeInfo()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/addmod.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    // +build ignore
    
    // Addmod adds a module as a txtar archive to the testdata/mod directory.
    //
    // Usage:
    //
    //	go run addmod.go path@version...
    //
    // It should only be used for very small modules - we do not want to check
    // very large files into testdata/mod.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/README

    requiring specific network servers and also to make them 
    significantly faster.
    
    A small go get'able test module can be added here by running
    
    	cd cmd/go/testdata
    	go run addmod.go path@vers
    
    where path and vers are the module path and version to add here.
    
    For interactive experimentation using this set of modules, run:
    
    	cd cmd/go
    	go test -proxy=localhost:1234 &
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    generated by ./addmod.bash rsc.io/sampler@v1.2.1
    
    -- .mod --
    module "rsc.io/sampler"
    
    require "golang.org/x/text" v0.0.0-20170915032832-14c0d48ead0c
    -- .info --
    {"Version":"v1.2.1","Name":"cac3af4f8a0ab40054fa6f8d423108a63a1255bb","Short":"cac3af4f8a0a","Time":"2018-02-13T18:16:22Z"}
    -- hello.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top