Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for Prioritize (0.27 sec)

  1. src/compress/flate/deflatefast.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package flate
    
    import "math"
    
    // This encoding algorithm, which prioritizes speed over output size, is
    // based on Snappy's LZ77-style encoder: github.com/golang/snappy
    
    const (
    	tableBits  = 14             // Bits used in the table.
    	tableSize  = 1 << tableBits // Size of the table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	// If the function returns true, indicating our key has high precedence, we will take over
    	// leadership even if their is another un-expired leader.
    	//
    	// This can be used to implemented a prioritized leader election. For example, if multiple
    	// versions of the same application run simultaneously, we can ensure the newest version
    	// will become the leader.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	}
    	switch runtime.GOOS {
    	case "darwin":
    		cmds = append(cmds, "/usr/bin/open")
    	case "windows":
    		cmds = append(cmds, "cmd /c start")
    	default:
    		// Commands opening browsers are prioritized over xdg-open, so browser()
    		// command can be used on linux to open the .svg file generated by the -web
    		// command (the .svg file includes embedded javascript so is best viewed in
    		// a browser).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.11.md

    * Add tolerations for Stackdriver Logging and Metadata Agents. ([#69737](https://github.com/kubernetes/kubernetes/pull/69737), [@qingling128](https://github.com/qingling128))
    * Fix scheduler crashes when Prioritize Map function returns error. ([#69618](https://github.com/kubernetes/kubernetes/pull/69618), [@DylanBLE](https://github.com/DylanBLE))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // hint, but are not required to guarantee strict adherence. If the field is
      // not set, the implementation will apply its default routing strategy. If set
      // to "PreferClose", implementations should prioritize endpoints that are
      // topologically close (e.g., same zone).
      // This is an alpha field and requires enabling ServiceTrafficDistribution feature.
      // +featureGate=ServiceTrafficDistribution
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        // Add first regular route as failed.
        routeDatabase.failed(regularRoutes[0])
        // Reset selector
        routeSelector = newRouteSelector(address)
    
        // The first selection prioritizes the non-failed routes.
        val selection2 = routeSelector.next()
        assertThat(selection2.next()).isEqualTo(regularRoutes[1])
        assertThat(selection2.hasNext()).isFalse()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. src/strings/replace.go

    func (r *Replacer) WriteString(w io.Writer, s string) (n int, err error) {
    	r.once.Do(r.buildOnce)
    	return r.r.WriteString(w, s)
    }
    
    // trieNode is a node in a lookup trie for prioritized key/value pairs. Keys
    // and values may be empty. For example, the trie containing keys "ax", "ay",
    // "bcbc", "x" and "xy" could have eight nodes:
    //
    //	n0  -
    //	n1  a-
    //	n2  .x+
    //	n3  .y+
    //	n4  b-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "Verb for the prioritize call, empty if not supported. This verb is appended to the URLPrefix when issuing the prioritize call to extender.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"weight": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// hint, but are not required to guarantee strict adherence. If the field is
    	// not set, the implementation will apply its default routing strategy. If set
    	// to "PreferClose", implementations should prioritize endpoints that are
    	// topologically close (e.g., same zone).
    	// This is an alpha field and requires enabling ServiceTrafficDistribution feature.
    	// +featureGate=ServiceTrafficDistribution
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. src/io/io_test.go

    	wb := new(bytes.Buffer)
    	rb.WriteString("hello, world.")
    	Copy(wb, rb)
    	if wb.String() != "hello, world." {
    		t.Errorf("Copy did not work properly")
    	} else if !rb.writeToCalled {
    		t.Errorf("WriteTo was not prioritized over ReadFrom")
    	}
    }
    
    type zeroErrReader struct {
    	err error
    }
    
    func (r zeroErrReader) Read(p []byte) (int, error) {
    	return copy(p, []byte{0}), r.err
    }
    
    type errWriter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top