Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewMatch (0.2 sec)

  1. src/cmd/go/internal/search/search.go

    	// If len(Pkgs) == 0 && len(Errs) == 0, the pattern is well-formed but did not
    	// match any packages.
    }
    
    // NewMatch returns a Match describing the given pattern,
    // without resolving its packages or errors.
    func NewMatch(pattern string) *Match {
    	return &Match{pattern: pattern}
    }
    
    // Pattern returns the pattern to be matched.
    func (m *Match) Pattern() string { return m.pattern }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    		}
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    			m := search.NewMatch(pattern)
    			matchPackages(ctx, m, imports.AnyTags(), omitStd, []module.Version{mod})
    			return m
    		}
    	} else {
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    			m := search.NewMatch(pattern)
    			prefix := mod.Path
    			if MainModules.Contains(mod.Path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// Later, you can issue a watch with the REST apis list.RV and end up earlier than the storage cacher.
    	// The general working model is that if you get a "resourceVersion too old" message, you re-list and rewatch.
    	// For this test, we'll actually cycle, "list/watch/create/delete" until we get an RV from list that observes the create and not an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  4. internal/event/target/kafka.go

    		args:       args,
    		store:      queueStore,
    		loggerOnce: loggerOnce,
    		quitCh:     make(chan struct{}),
    	}
    
    	if target.store != nil {
    		if args.BatchSize > 1 {
    			target.batch = store.NewBatch[string, *sarama.ProducerMessage](args.BatchSize)
    		}
    		store.StreamItems(target.store, target, target.quitCh, target.loggerOnce)
    	}
    
    	return target, nil
    }
    
    func isKafkaConnErr(err error) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top