Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Bridge (0.13 sec)

  1. hack/local-up-cluster.sh

      cat << EOF | sudo tee "$CNI_CONFIG_DIR"/10-containerd-net.conflist
    {
     "cniVersion": "1.0.0",
     "name": "containerd-net",
     "plugins": [
       {
         "type": "bridge",
         "bridge": "cni0",
         "isGateway": true,
         "ipMasq": true,
         "promiscMode": true,
         "ipam": {
           "type": "host-local",
           "ranges": [
             [{
               "subnet": "10.88.0.0/16"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This flag forcibly enables experimental MLIR bridge support.
    config_setting(
        name = "enable_mlir_bridge",
        define_values = {"enable_mlir_bridge": "true"},
        visibility = ["//visibility:public"],
    )
    
    # This flag forcibly disables experimental MLIR bridge support.
    config_setting(
        name = "disable_mlir_bridge",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	externalIPRules := func(args []string) {
    		// Allow traffic for external IPs that does not come from a bridge (i.e. not from a container)
    		// nor from a local process to be forwarded to the service.
    		// This rule roughly translates to "all traffic from off-machine".
    		// This is imperfect in the face of network plugins that might not use a bridge, but we can revisit that later.
    		externalTrafficOnlyArgs := append(args,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.artifact.InvalidArtifactRTException;
    import org.apache.maven.artifact.InvalidRepositoryException;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.internal.impl.InternalSession;
    import org.apache.maven.internal.impl.resolver.DefaultModelCache;
    import org.apache.maven.internal.impl.resolver.DefaultModelRepositoryHolder;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                    mainGetter = metadata;
                }
            }
    
            public void addSetter(Method method) {
                if (method.isBridge()) {
                    // Ignore bridge methods and use the real method instead
                    return;
                }
                setters.add(method);
                if (!Modifier.isFinal(method.getModifiers())) {
                    overridableSetters.add(method);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    				tx.Add(&knftables.Rule{
    					Chain: internalTrafficChain,
    					Rule: knftables.Concat(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                        (communication_key_index))
              .str();
    
      // Use a unique name when sending just the IfRegion predicate.  This is
      // for readable and to match the key in the TF2XLA bridge.
      if (clustered_ops.size() == 1 && llvm::isa<mlir::TF::IfRegionOp>(op) &&
          external_operands.size() == 1) {
        args_communication_key =
            llvm::formatv("if_predicate_channel_{0}", (communication_key_index))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    // with full definitions instead of mangled names.
    func (p *Package) rewriteRef(f *File) {
    	// Keep a list of all the functions, to remove the ones
    	// only used as expressions and avoid generating bridge
    	// code for them.
    	functions := make(map[string]bool)
    
    	for _, n := range f.Name {
    		if n.Kind == "func" {
    			functions[n.Go] = false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    				natRules.Write(
    					"-A", string(internalTrafficChain),
    					args,
    					proxier.localDetector.IfNotLocal(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    them to the following tpu ops.
      }];
    
      let description = [{
    This op serves as an annotation for the dynamic shaped tensor and will be
    removed during the bridge rewrite.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$tensors
      );
    
      let results = (outs
        Variadic<TF_Tensor>:$tpu_tensors
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top