Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for utilipvs (0.26 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    	}
    	if f.vsCreated {
    		vs := []*utilipvs.VirtualServer{{}}
    		return vs, nil
    	}
    	return nil, nil
    }
    func (f *fakeIpvs) AddRealServer(*utilipvs.VirtualServer, *utilipvs.RealServer) error {
    	return nil
    }
    func (f *fakeIpvs) GetRealServers(*utilipvs.VirtualServer) ([]*utilipvs.RealServer, error) {
    	return nil, nil
    }
    func (f *fakeIpvs) DeleteRealServer(*utilipvs.VirtualServer, *utilipvs.RealServer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    		// ipvs call
    		serv := &utilipvs.VirtualServer{
    			Address:   svcInfo.ClusterIP(),
    			Port:      uint16(svcInfo.Port()),
    			Protocol:  string(svcInfo.Protocol()),
    			Scheduler: proxier.ipvsScheduler,
    		}
    		// Set session affinity flag and timeout for IPVS service
    		if svcInfo.SessionAffinityType() == v1.ServiceAffinityClientIP {
    			serv.Flags |= utilipvs.FlagPersistent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux.go

    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/iptables"
    	"k8s.io/kubernetes/pkg/proxy/ipvs"
    	utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    	utilipvs "k8s.io/kubernetes/pkg/proxy/ipvs/util"
    	"k8s.io/kubernetes/pkg/proxy/nftables"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	"k8s.io/utils/exec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

        const ::stablehlo::quantization::QuantizationSpecs& specs,
        const ::stablehlo::quantization::DebuggerConfig& debugger_config);
    
    // Adds passes for static-range quantization post-calibration. Utilizes tensor
    // statistics collected from the calibration step and performs quantization.
    void AddPostCalibrationPasses(
        OpPassManager& pm,
        const ::stablehlo::quantization::PipelineConfig& pipeline_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Encapsulates all logic required to build a {@link LocalConfigurationMetadata} from a
     * {@link ConfigurationInternal}. Utilizes caching to prevent unnecessary duplicate conversions
     * between DSL and internal metadata types.
     */
    public class DefaultLocalConfigurationMetadataBuilder implements LocalConfigurationMetadataBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. docs/fr/docs/features.md

    def main(user_id: str):
        return user_id
    
    
    # Un modèle Pydantic
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    Qui peuvent ensuite être utilisés comme cela:
    
    ```Python
    my_user: User = User(id=3, name="John Doe", joined="2018-07-19")
    
    second_user_data = {
        "id": 4,
        "name": "Mary",
        "joined": "2018-11-30",
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    			// handles loading and updating the "cacerts" secret with the "istio-generated" key the
    			// same way it handles the "istio-ca-secret" secret. Isitod utilizes a secret watch instead
    			// of file watch to check for secret updates. This may change in the future, and istiod
    			// will watch the file mount instead.
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. docs/fr/docs/index.md

    Pour en savoir plus, consultez la section <a href="https://fastapi.tiangolo.com/fr/benchmarks/" class="internal-link" target="_blank">Benchmarks</a>.
    
    ## Dépendances facultatives
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - Using the status of build features in reports or statistics.
    - Incrementally adopting experimental Gradle features by disabling incompatible plugin functionality.
    
    Below is an example of a plugin that utilizes both of the cases.
    
    .Reacting to build features
    [source,java]
    ----
    include::{snippetsPath}/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java[tags=my-plugin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary =
        "Shape inference on TF dialect and ops implementing InferTypeOpInterface";
    
      let description = [{
        Fixed point shape refinement pass that utilizes the shape functions
        registered on ops using the InferTypeOpInterface as well as by bridging to
        the TensorFlow op registry's shape functions. This is an interprocedural
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top