Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 139 for findMin (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/types2/lookup.go

    	if name == "_" {
    		return // blank fields/methods are never found
    	}
    
    	// Importantly, we must not call under before the call to deref below (nor
    	// does deref call under), as doing so could incorrectly result in finding
    	// methods of the pointer base type when T is a (*Named) pointer type.
    	typ, isPtr := deref(T)
    
    	// *typ where typ is an interface (incl. a type parameter) has no methods.
    	if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/go/types/lookup.go

    	if name == "_" {
    		return // blank fields/methods are never found
    	}
    
    	// Importantly, we must not call under before the call to deref below (nor
    	// does deref call under), as doing so could incorrectly result in finding
    	// methods of the pointer base type when T is a (*Named) pointer type.
    	typ, isPtr := deref(T)
    
    	// *typ where typ is an interface (incl. a type parameter) has no methods.
    	if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge_test.go

    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    		t.Run("Force/"+test.name, func(t *testing.T) {
    			mark, find, _ := setup(t, true)
    			test.mark(mark)
    			test.find(find) // Finding should always work when forced.
    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    	}
    	t.Run("Bg/MarkInterleaved", func(t *testing.T) {
    		mark, find, nextGen := setup(t, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir_test.go

    	}
    
    	// Need to create the subdirectory
    	os.MkdirAll(mounter.GetPath(), 0755)
    
    	expectedEmptyDirUsage, err := volumetest.FindEmptyDirectoryUsageOnTmpfs()
    	if err != nil {
    		t.Errorf("Unexpected error finding expected empty directory usage on tmpfs: %v", err)
    	}
    
    	// TODO(pwittroc): Move this into a reusable testing utility
    	metrics, err := mounter.GetMetrics()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top