Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for findMin (0.13 sec)

  1. pilot/pkg/config/file/store.go

    type unknownSchemaError struct {
    	group   string
    	version string
    	kind    string
    }
    
    func (e unknownSchemaError) Error() string {
    	return fmt.Sprintf("failed finding schema for group/version/kind: %s/%s/%s", e.group, e.version, e.kind)
    }
    
    func (s *KubeSource) parseChunk(r *collection.Schemas, name string, lineNum int, yamlChunk []byte) ([]kubeResource, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_distributed_test.cc

                             std::vector<std::string>* control_ret_node_names,
                             bool* control_rets_updated) override {
        // Inject failure to function instantiation if finding a node that contains
        // the given node name (error_node_) and requested device (error_device_).
        for (const auto node : graph->get()->nodes()) {
          if (node->name().find(error_node_) != string::npos &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	// be disabled.
    	MinimizeTimeout time.Duration
    
    	// MinimizeLimit is the maximum number of calls to the fuzz function to be
    	// made while minimizing after finding a crash. If zero, there will be no
    	// limit. Calls to the fuzz function made when minimizing also count toward
    	// Limit. If MinimizeTimeout and MinimizeLimit are both zero, then
    	// minimization will be disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. docs/de/docs/contributing.md

    * Wenn Sie Seiten übersetzen, fügen Sie einen einzelnen Pull Request pro übersetzter Seite hinzu. Dadurch wird es für andere viel einfacher, ihn zu durchzusehen.
    
    * Um den Zwei-Buchstaben-Code für die Sprache zu finden, die Sie übersetzen möchten, schauen Sie sich die Tabelle <a href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes" class="external-link" target= verwenden "_blank">List of ISO 639-1 codes</a> an.
    
    #### Vorhandene Sprache
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder.go

    			// insert to the eligible node set.
    			if eligibleNodes == nil {
    				eligibleNodes = sets.New(nodeNames...)
    			} else {
    				// for subsequent finding of eligible nodes for the local PersistentVolume,
    				// take the intersection of the nodes with the existing eligible nodes
    				// for cases if PV1 has node affinity to node1 and PV2 has node affinity to node2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator.go

    func (a *Allocator) allocateNextService(svc *api.Service, dryRun bool) (net.IP, error) {
    	if !a.ready.Load() || !a.ipAddressSynced() {
    		return nil, ErrNotReady
    	}
    	if dryRun {
    		// Don't bother finding a free value. It's racy and not worth the
    		// effort to plumb any further.
    		return a.CIDR().IP, nil
    	}
    
    	trace := utiltrace.New("allocate dynamic ClusterIP address")
    	defer trace.LogIfLong(500 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. docs/de/docs/python-types.md

    An derselben Stelle versuchen Sie, die Autovervollständigung mit „Strg+Leertaste“ auszulösen, und Sie sehen:
    
    <img src="/img/python-types/image02.png">
    
    Hier können Sie durch die Optionen blättern, bis Sie diejenige finden, bei der es „Klick“ macht:
    
    <img src="/img/python-types/image03.png">
    
    ## Mehr Motivation
    
    Sehen Sie sich diese Funktion an, sie hat bereits Typhinweise:
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. cmd/metacache-stream.go

    	if err != nil {
    		r.err = err
    		return r.err == io.EOF
    	}
    	return false
    }
    
    // forwardTo will forward to the first entry that is >= s.
    // Will return io.EOF if end of stream is reached without finding any.
    func (r *metacacheReader) forwardTo(s string) error {
    	r.checkInit()
    	if r.err != nil {
    		return r.err
    	}
    
    	if s == "" {
    		return nil
    	}
    	if r.current.name != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/bugreport/bugreport.go

    		if err == nil {
    			writeFiles(dir, out, params.DryRun)
    		}
    		log.Infof("Done with %s", runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name())
    	}()
    }
    
    // filterUnknownBinaryErrors ignores errors about not finding a binary
    // This is expected behavior on distroless
    func filterUnknownBinaryErrors(err error) error {
    	if err == nil {
    		return nil
    	}
    	if strings.Contains(err.Error(), "executable file not found in $PATH") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/compress/flate/deflate.go

    	// format limits the range of lengths and offsets. For example, there are
    	// 256 legitimate lengths: those in the range [3, 258]. This package's
    	// compressor uses a higher minimum match length, enabling optimizations
    	// such as finding matches via 32-bit loads and compares.
    	baseMatchLength = 3       // The smallest match length per the RFC section 3.2.5
    	minMatchLength  = 4       // The smallest match length that the compressor actually emits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top