Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for pruned (0.17 sec)

  1. src/testing/benchmark.go

    // may be called simultaneously from multiple goroutines.
    //
    // Like in tests, benchmark logs are accumulated during execution
    // and dumped to standard output when done. Unlike in tests, benchmark logs
    // are always printed, so as not to hide output whose existence may be
    // affecting benchmark results.
    type B struct {
    	common
    	importPath       string // import path of the package containing the benchmark
    	context          *benchContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/runtime/mranges.go

    func (a addrRange) subtract(b addrRange) addrRange {
    	if b.base.lessEqual(a.base) && a.limit.lessEqual(b.limit) {
    		return addrRange{}
    	} else if a.base.lessThan(b.base) && b.limit.lessThan(a.limit) {
    		throw("bad prune")
    	} else if b.limit.lessThan(a.limit) && a.base.lessThan(b.limit) {
    		a.base = b.limit
    	} else if a.base.lessThan(b.base) && b.base.lessThan(a.limit) {
    		a.limit = b.base
    	}
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net_test.go

    	fixture.ipsetDeps.On("addIP",
    		"foo-v4",
    		netip.MustParseAddr("2.2.2.2"),
    		ipProto,
    		podUID,
    		false,
    	).Return(nil)
    
    	// List should return one IP not in our "pod snapshot", which means we prune
    	fixture.ipsetDeps.On("listEntriesByIP",
    		"foo-v4",
    	).Return([]netip.Addr{
    		netip.MustParseAddr("2.2.2.2"),
    		netip.MustParseAddr("6.6.6.6"),
    		netip.MustParseAddr("3.3.3.3"),
    	}, nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    	FlagTextAddr      = flag.Int64("T", -1, "set the start address of text symbols")
    	flagEntrySymbol   = flag.String("E", "", "set `entry` symbol name")
    	flagPruneWeakMap  = flag.Bool("pruneweakmap", true, "prune weak mapinit refs")
    	flagRandLayout    = flag.Int64("randlayout", 0, "randomize function layout")
    	cpuprofile        = flag.String("cpuprofile", "", "write cpu profile to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. build/dependencies.yaml

      # backwards-compatible with the original tooling.
      #
      # In instances where the file format may change across versions, this meta
      # dependency check exists to ensure we're pinned to a known good version.
      #
      # ref: https://github.com/kubernetes/kubernetes/pull/98845
      - name: "zeitgeist"
        version: "v0.5.3"
        refPaths:
        - path: hack/verify-external-dependencies-version.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_static.go

    func (e SMTAlignmentError) Type() string {
    	return ErrorSMTAlignment
    }
    
    // staticPolicy is a CPU manager policy that does not change CPU
    // assignments for exclusively pinned guaranteed containers after the main
    // container process starts.
    //
    // This policy allocates CPUs exclusively for a container if all the following
    // conditions are met:
    //
    // - The pod QoS class is Guaranteed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    type funcLitFinder token.Pos
    
    func (f *funcLitFinder) Visit(node ast.Node) (w ast.Visitor) {
    	if f.found() {
    		return nil // Prune search.
    	}
    	switch n := node.(type) {
    	case *ast.FuncLit:
    		*f = funcLitFinder(n.Body.Lbrace)
    		return nil // Prune search.
    	}
    	return f
    }
    
    func (f *funcLitFinder) found() bool {
    	return token.Pos(*f) != token.NoPos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. build/lib/release.sh

          ! \( \
            \( -path "${KUBE_ROOT}"/_\*       -o \
               -path "${KUBE_ROOT}"/.git\*    -o \
               -path "${KUBE_ROOT}"/.config\* -o \
               -path "${KUBE_ROOT}"/.gsutil\*    \
            \) -prune \
          \) -print0 \
        | "${TAR}" czf "${src_tarball}" --transform "s|${KUBE_ROOT#/*}|kubernetes|" --null -T -
      fi
    }
    
    # Package up all of the cross compiled clients. Over time this should grow into
    # a full SDK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. internal/http/headers.go

    	MinIOSnowballIgnoreDirs = "X-Amz-Meta-Minio-Snowball-Ignore-Dirs"
    	// MinIOSnowballIgnoreErrors will ignore recoverable errors, typically single files failing to upload.
    	// An error will be printed to console instead.
    	MinIOSnowballIgnoreErrors = "X-Amz-Meta-Minio-Snowball-Ignore-Errors"
    	// MinIOSnowballPrefix will apply this prefix (plus / at end) to all extracted objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector.go

    		if reflect.DeepEqual(oldResources, newResources) {
    			logger.V(5).Info("no resource updates from discovery, skipping garbage collector sync")
    			return
    		}
    
    		// Ensure workers are paused to avoid processing events before informers
    		// have resynced.
    		gc.workerLock.Lock()
    		defer gc.workerLock.Unlock()
    
    		// Once we get here, we should not unpause workers until we've successfully synced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top