Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for Everything (0.2 sec)

  1. istioctl/pkg/describe/describe.go

    		return x.Prefix + "*"
    	}
    
    	return sm.String()
    }
    
    func renderMatches(trafficMatches []*v1alpha3.HTTPMatchRequest) string {
    	if len(trafficMatches) == 0 {
    		return "everything"
    	}
    
    	matches := []string{}
    	for _, trafficMatch := range trafficMatches {
    		matches = append(matches, renderMatch(trafficMatch))
    	}
    	return strings.Join(matches, ", ")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    With this setting, code with a module or import path beginning with
    github.com/ can only use git; paths on evil.com cannot use any version
    control command, and all other paths (* matches everything) can use
    only git or hg.
    
    The special patterns "public" and "private" match public and private
    module or import paths. A path is private if it matches the GOPRIVATE
    variable; otherwise it is public.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				continue
    			}
    			if expected.Cmp(got) != 0 {
    				t.Errorf("%v: not the same as %s", item.input, value)
    				continue
    			}
    		}
    
    		// Try the negative version of everything
    		desired := &inf.Dec{}
    		expect := Quantity{d: infDecAmount{Dec: desired}}
    		for _, item := range table {
    			got, err := ParseQuantity("-" + strings.TrimLeftFunc(item.input, unicode.IsSpace))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	}()
    
    	// We are listing nodes from local cache as we can tolerate some small delays
    	// comparing to state from etcd and there is eventual consistency anyway.
    	nodes, err := nc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	added, deleted, newZoneRepresentatives := nc.classifyNodes(nodes)
    	logger := klog.FromContext(ctx)
    	for i := range newZoneRepresentatives {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	gogcflags = os.Getenv("GO_GCFLAGS")
    	setNoOpt()
    
    	var t tester
    
    	var noRebuild bool
    	flag.BoolVar(&t.listMode, "list", false, "list available tests")
    	flag.BoolVar(&t.rebuild, "rebuild", false, "rebuild everything first")
    	flag.BoolVar(&noRebuild, "no-rebuild", false, "overrides -rebuild (historical dreg)")
    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	// Disallow malloc or panic while holding the heap lock. We do
    	// this here because this is a non-mallocgc entry-point to
    	// the mheap API.
    	gp := getg()
    	gp.m.mallocing++
    
    	// Force scavenge everything.
    	released := h.pages.scavenge(^uintptr(0), nil, true)
    
    	gp.m.mallocing--
    
    	if debug.scavtrace > 0 {
    		printScavTrace(0, released, true)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/bufio/bufio_test.go

    	{"byte", iotest.OneByteReader},
    	{"half", iotest.HalfReader},
    	{"data+err", iotest.DataErrReader},
    	{"timeout", iotest.TimeoutReader},
    }
    
    // Call ReadString (which ends up calling everything else)
    // to accumulate the text of a file.
    func readLines(b *Reader) string {
    	s := ""
    	for {
    		s1, err := b.ReadString('\n')
    		if err == io.EOF {
    			break
    		}
    		if err != nil && err != iotest.ErrTimeout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"labelSelector":        "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
    	"fieldSelector":        "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
    	"watch":                "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    			// uses a pruned module graph, it will expect to find all of our
    			// transitive dependencies by reading just our go.mod file, not the go.mod
    			// files of everything we depend on.
    			//
    			// (This is the “import invariant” that makes graph pruning possible.)
    
    		case rootsImported && pkg.flags.has(pkgFromRoot):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// Pick up the remaining unswept/not being swept spans concurrently
    	//
    	// This shouldn't happen if we're being invoked in background
    	// mode since proportional sweep should have just finished
    	// sweeping everything, but rounding errors, etc, may leave a
    	// few spans unswept. In forced mode, this is necessary since
    	// GC can be forced at any point in the sweeping cycle.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top