Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for Prioritize (0.37 sec)

  1. schema/schema.go

    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    		bindName := field.BindName()
    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/apis/core/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).
    	// +optional
    	TrafficDistribution *string
    }
    
    // ServicePort represents the port on which the service is exposed
    type ServicePort struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (ServiceSpec) SwaggerDoc() map[string]string {
    	return map_ServiceSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  8. 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)
  9. cmd/metacache-set.go

    func (er *erasureObjects) listPath(ctx context.Context, o listPathOptions, results chan<- metaCacheEntry) (err error) {
    	defer xioutil.SafeClose(results)
    	o.debugf(color.Green("listPath:")+" with options: %#v", o)
    
    	// get prioritized non-healing disks for listing
    	disks, infos, _ := er.getOnlineDisksWithHealingAndInfo(true)
    	askDisks := getListQuorum(o.AskDisks, er.setDriveCount)
    	if askDisks == -1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            'GPG'               | 'gpg'     | null
            'ASCII'             | 'keys'    | null
            'ASCII with header' | 'keys'    | 'some comment showing we can have arbitrary text'
        }
    
        def "by default, prioritizes gpg format over ascii-armored when #hint"() {
            // key will not be published on the server fixture but available locally
            def keyring = newKeyRing()
            def pkId = toHexString(keyring.publicKey.fingerprint)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top