Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for cleanBar (0.16 sec)

  1. hack/verify-licenses.sh

    set -o pipefail
    
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
    mkdir -p "$ARTIFACTS/logs/"
    
    # Creating a new repository tree 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			pods := podInformer.Informer().GetStore()
    			options := LegacySATokenCleanerOptions{
    				SyncInterval:  30 * time.Second,
    				CleanUpPeriod: tc.LegacyTokenCleanUpPeriod,
    			}
    			cleaner, _ := NewLegacySATokenCleaner(saInformer, secretInformer, podInformer, client, testingclock.NewFakeClock(time.Now().UTC()), options)
    
    			if tc.ExistingServiceAccount != nil {
    				serviceAccounts.Add(tc.ExistingServiceAccount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/runtime/runtime.cc

            // assume they are tensorspecs. Once TODO(b/190203981) is done, we
            // should be able to pass along the `StructuredValue`s to an API in a
            // much cleaner way.
            //
            // TODO(b/190206621): Implement API for inspecting signatures
            SavedConcreteFunction saved_concrete_function =
                concrete_functions.at(fn_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	check.objPath[i] = nil
    	check.objPath = check.objPath[:i]
    	return obj
    }
    
    type cleaner interface {
    	cleanup()
    }
    
    // needsCleanup records objects/types that implement the cleanup method
    // which will be called at the end of type-checking.
    func (check *Checker) needsCleanup(c cleaner) {
    	check.cleaners = append(check.cleaners, c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	check.objPath[i] = nil
    	check.objPath = check.objPath[:i]
    	return obj
    }
    
    type cleaner interface {
    	cleanup()
    }
    
    // needsCleanup records objects/types that implement the cleanup method
    // which will be called at the end of type-checking.
    func (check *Checker) needsCleanup(c cleaner) {
    	check.cleaners = append(check.cleaners, c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/podcgroupns.go

    	// - 0::/../crio-45490e76e0878aaa4d9808f7d2eefba37f093c3efbba9838b6d8ab804d9bd814.scope
    	// First trim off any .scope suffix. This allows for a cleaner regex since
    	// we don't have to muck with greediness. TrimSuffix is no-copy so this
    	// is cheap.
    	cgroupPath = strings.TrimSuffix(cgroupPath, ".scope")
    
    	var matchResults map[string]string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/text/template/template.go

    	tmpl   map[string]*Template // Map from name to defined templates.
    	muTmpl sync.RWMutex         // protects tmpl
    	option option
    	// We use two maps, one for parsing and one for execution.
    	// This separation makes the API cleaner since it doesn't
    	// expose reflection to the client.
    	muFuncs    sync.RWMutex // protects parseFuncs and execFuncs
    	parseFuncs FuncMap
    	execFuncs  map[string]reflect.Value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/crypto/dsa/dsa.go

    	// use a verification seed to generate the primes. The verification
    	// seed doesn't appear to be exported or used by other code and
    	// omitting it makes the code cleaner.
    
    	var L, N int
    	switch sizes {
    	case L1024N160:
    		L = 1024
    		N = 160
    	case L2048N224:
    		L = 2048
    		N = 224
    	case L2048N256:
    		L = 2048
    		N = 256
    	case L3072N256:
    		L = 3072
    		N = 256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/core.go

    		controllerContext.ClientBuilder.ClientOrDie("legacy-service-account-token-cleaner"),
    		clock.RealClock{},
    		serviceaccountcontroller.LegacySATokenCleanerOptions{
    			CleanUpPeriod: cleanUpPeriod,
    			SyncInterval:  serviceaccountcontroller.DefaultCleanerSyncInterval,
    		})
    	if err != nil {
    		return nil, true, fmt.Errorf("failed to start the legacy service account token cleaner: %v", err)
    	}
    	go legacySATokenCleaner.Run(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/select.go

    		setField("c", c)
    		if !ir.IsBlank(elem) {
    			elem = typecheck.ConvNop(elem, types.Types[types.TUNSAFEPTR])
    			setField("elem", elem)
    		}
    
    		// TODO(mdempsky): There should be a cleaner way to
    		// handle this.
    		if base.Flag.Race {
    			r := mkcallstmt("selectsetpc", typecheck.NodAddr(ir.NewIndexExpr(base.Pos, pcs, ir.NewInt(base.Pos, int64(i)))))
    			init = append(init, r)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top