Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 239 for knight (0.45 sec)

  1. pilot/pkg/xds/endpoints/ep_filters.go

    		return scaleFactor
    	}
    	weight := uint32(math.MaxUint32)
    	if ep.GetLoadBalancingWeight().Value < math.MaxUint32/scaleFactor {
    		weight = ep.GetLoadBalancingWeight().Value * scaleFactor
    	}
    	return weight
    }
    
    // Apply the weight for this endpoint to the network gateways.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Update docs about async and response-model with more gender neutral language. PR [#1869](https://github.com/tiangolo/fastapi/pull/1869) by [@Edward-Knight](https://github.com/Edward-Knight).
    
    ### Translations
    
    * 🌐 Add Russian translation for `docs/python-types.md`. PR [#3039](https://github.com/tiangolo/fastapi/pull/3039) by [@dukkee](https://github.com/dukkee).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      BroadcastBatchDimensionsForBatchMatMul(builder, loc, input, weight);
    
      // Both input and weight have the same rank after broadcasting.
      ShapedType weight_shape = mlir::cast<ShapedType>(weight.getType());
      int num_batch_dim = weight_shape.getRank() - 2;
    
      // Transpose and constant-fold the weight if needed.
      if (adj_y.getValue()) {
        SmallVector<int32_t> perm_values(num_batch_dim);
        absl::c_iota(perm_values, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/preflight.go

    	preflightExample = cmdutil.Examples(`
    		# Run pre-flight checks for kubeadm init using a config file.
    		kubeadm init phase preflight --config kubeadm-config.yaml
    		`)
    )
    
    // NewPreflightPhase creates a kubeadm workflow phase that implements preflight checks for a new control-plane node.
    func NewPreflightPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "preflight",
    		Short:   "Run pre-flight checks",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

              - Cannot find a version of 'org:foo' that satisfies the version constraints:
                   Dependency path ':insight-test:unspecified' --> 'org:foo:1.+'
                   Constraint path ':insight-test:unspecified' --> 'org:foo:1.1'
                   Constraint path ':insight-test:unspecified' --> 'org:foo:{strictly 1.0}' because of the following reason: dependency was locked to version '1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      int c;  // Channels.
    
      int h_in;  // Input height.
      int w_in;  // Input width.
    
      int h_out;  // Output height.
      int w_out;  // Output width.
    
      int kh;  // Kernel height.
      int kw;  // Kernel width.
    
      int ph;  // Padding on "height" dimension (both sides).
      int pw;  // Padding on "width" dimension (both sides).
    
      int sh;  // Stride on "height" dimension.
      int sw;  // Stride on "width" dimension.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/default_plugins.go

    				{Name: names.TaintToleration, Weight: ptr.To[int32](3)},
    				{Name: names.NodeAffinity, Weight: ptr.To[int32](2)},
    				{Name: names.NodePorts},
    				{Name: names.NodeResourcesFit, Weight: ptr.To[int32](1)},
    				{Name: names.VolumeRestrictions},
    				{Name: names.NodeVolumeLimits},
    				{Name: names.VolumeBinding},
    				{Name: names.VolumeZone},
    				{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/image/gif/writer_test.go

    		t.Errorf("unexpected global color model")
    	}
    	if w, h := g1.Config.Width, g1.Config.Height; w != width || h != height {
    		t.Errorf("got config width * height = %d * %d, want %d * %d", w, h, width, height)
    	}
    
    	if g0.LoopCount != g1.LoopCount {
    		t.Errorf("loop counts differ: %d and %d", g0.LoopCount, g1.LoopCount)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    }
    
    // NewWeighted creates a new weighted semaphore with the given
    // maximum combined weight for concurrent access.
    func NewWeighted(n int64) *Weighted {
    	w := &Weighted{size: n}
    	return w
    }
    
    // Weighted provides a way to bound concurrent access to a resource.
    // The callers can request access with a given weight.
    type Weighted struct {
    	size    int64
    	cur     int64
    	mu      sync.Mutex
    	waiters list.List
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    		out[i].Priority = uint32(priority)
    		var weight uint32
    		for _, index := range priorityMap[priority] {
    			out[i].LbEndpoints = append(out[i].LbEndpoints, ep.LocalityLbEndpoints.LbEndpoints[index])
    			weight += ep.LocalityLbEndpoints.LbEndpoints[index].GetLoadBalancingWeight().GetValue()
    		}
    		// reset weight
    		out[i].LoadBalancingWeight = &wrappers.UInt32Value{
    			Value: weight,
    		}
    	}
    
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top