Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 333 for ipnets (0.21 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipnets.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipv6-ipnets.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/server.go

    }
    
    // createHostsideProbeIpset creates an ipset. This is designed to be called from the host netns.
    // Note that if the ipset already exist by name, Create will not return an error.
    //
    // We will unconditionally flush our set before use here, so it shouldn't matter.
    func createHostsideProbeIpset(isV6 bool) (ipset.IPSet, error) {
    	linDeps := ipset.RealNlDeps()
    	probeSet, err := ipset.NewIPSet(iptables.ProbeIPSet, isV6, linDeps)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/node_ipam_controller.go

    type Controller struct {
    	allocatorType ipam.CIDRAllocatorType
    
    	cloud                cloudprovider.Interface
    	clusterCIDRs         []*net.IPNet
    	serviceCIDR          *net.IPNet
    	secondaryServiceCIDR *net.IPNet
    	kubeClient           clientset.Interface
    	eventBroadcaster     record.EventBroadcaster
    
    	nodeLister         corelisters.NodeLister
    	nodeInformerSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/ctrlz/ctrlz.go

    	if err != nil {
    		return ""
    	}
    
    	for _, address := range addrs {
    		// check the address type and if it is not a loopback then return it
    		if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
    			if ipnet.IP.To4() != nil {
    				return ipnet.IP.String()
    			}
    		}
    	}
    	return ""
    }
    
    type topic struct {
    	Name string
    	URL  string
    }
    
    func getTopics() []topic {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

      std::vector<NodeDefBuilder::NodeOut> inputs;
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
    
      const std::string dir = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/net/ip.go

    // be an IPv4 address.
    type IP []byte
    
    // An IPMask is a bitmask that can be used to manipulate
    // IP addresses for IP addressing and routing.
    //
    // See type [IPNet] and func [ParseCIDR] for details.
    type IPMask []byte
    
    // An IPNet represents an IP network.
    type IPNet struct {
    	IP   IP     // network number
    	Mask IPMask // network mask
    }
    
    // IPv4 returns the IP address (in 16-byte form) of the
    // IPv4 address a.b.c.d.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(TensorType_INT8));
      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(1))->type(),
                  Eq(TensorType_FLOAT32));
      EXPECT_THAT(subgraph->tensors[op->inputs[1]].get()->type,
                  Eq(TensorType_INT8));
    
      // Verify FC bias should be int32 quantized.
      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(2))->type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. pkg/kube/krt/krttest/helpers.go

    	t.Cleanup(func() {
    		t.Helper()
    		types := slices.Map(mc.inputs, func(e any) string {
    			return fmt.Sprintf("%T", e)
    		})
    		assert.Equal(t, len(mc.inputs), 0, fmt.Sprintf("some inputs were not consumed: %v (%v)", mc.inputs, types))
    	})
    	return mc
    }
    
    func GetMockCollection[T any](mc *MockCollection) krt.Collection[T] {
    	return krt.NewStaticCollection(extractType[T](&mc.inputs))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 19:33:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top