Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for pcap (0.06 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod.go

    }
    
    func getPortMap(pod *v1.Pod) map[string]uint32 {
    	pmap := map[string]uint32{}
    	for _, c := range pod.Spec.Containers {
    		for _, port := range c.Ports {
    			if port.Name == "" || port.Protocol != v1.ProtocolTCP {
    				continue
    			}
    			// First port wins, per Kubernetes (https://github.com/kubernetes/kubernetes/issues/54213)
    			if _, f := pmap[port.Name]; !f {
    				pmap[port.Name] = uint32(port.ContainerPort)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                  bpfLogFilters:
                    additionalProperties:
                      type: string
                    description: "BPFLogFilters is a map of key=values where the value
                      is a pcap filter expression and the key is an interface name with
                      'all' denoting all interfaces, 'weps' all workload endpoints and
                      'heps' all host endpoints. \n When specified as an env var, it accepts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    		}
    		if fn.dwarfDebugLinesSym != nil && fn.dwarfDebugLinesSym.Size != 0 {
    			w.aux1(goobj.AuxDwarfLines, fn.dwarfDebugLinesSym)
    		}
    		if fn.Pcln.Pcsp != nil && fn.Pcln.Pcsp.Size != 0 {
    			w.aux1(goobj.AuxPcsp, fn.Pcln.Pcsp)
    		}
    		if fn.Pcln.Pcfile != nil && fn.Pcln.Pcfile.Size != 0 {
    			w.aux1(goobj.AuxPcfile, fn.Pcln.Pcfile)
    		}
    		if fn.Pcln.Pcline != nil && fn.Pcln.Pcline.Size != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    //
    //go:linkname makeslice
    func makeslice(et *_type, len, cap int) unsafe.Pointer {
    	mem, overflow := math.MulUintptr(et.Size_, uintptr(cap))
    	if overflow || mem > maxAlloc || len < 0 || len > cap {
    		// NOTE: Produce a 'len out of range' error instead of a
    		// 'cap out of range' error when someone does make([]T, bignumber).
    		// 'cap out of range' is true too, but since the cap is only being
    		// supplied implicitly, saying len is clearer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        TF_Tensor:$tensor
      );
    }
    
    def TFMapFnOp : TensorflowMlrt_Op<"tf_map_fn", [AttrSizedOperandSegments, Pure]> {
      let summary = "The Parallel Map for tf_mlrt dialect";
      let description = [{
        The Pmap executes body function in parallel for all ranges up to $max_iterations.
    
        The pseudo code:
          for(int i = 0; i < $max_iterations; i++) {
            body_fn(MlrtFture($tensor_list_or_flow_in[i]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    				s.copyIntoBuf(b[len(b)-remainder:])
    			}
    			return length, nil
    		}
    
    		if len(s.buf) == cap(s.buf) {
    			// flush the buffer
    			kimd(s.function, &s.a, s.buf)
    			s.buf = s.buf[:0]
    		}
    
    		// copy as much as we can into the buffer
    		n := len(b)
    		if len(b) > cap(s.buf)-len(s.buf) {
    			n = cap(s.buf) - len(s.buf)
    		}
    		s.copyIntoBuf(b[:n])
    		b = b[n:]
    	}
    	return length, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/builtins0.go

    	var x = f()
    	const (
    		_ = cap([4]int{})
    		_ = cap([4]int{x})
    		_ = cap /* ERROR "not constant" */ ([4]int{f()})
    		_ = cap /* ERROR "not constant" */ ([4]int{cap([]int{})})
    		_ = cap([4]int{cap([4]int{})})
    	)
    	var y float64
    	var z complex128
    	const (
    		_ = cap([4]float64{})
    		_ = cap([4]float64{y})
    		_ = cap([4]float64{real(2i)})
    		_ = cap /* ERROR "not constant" */ ([4]float64{real(z)})
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    			originalSELinuxLabel:           seLinuxFileLabel,
    		}
    		// record desired size of the volume
    		if volumeSpec.PersistentVolume != nil {
    			pvCap := volumeSpec.PersistentVolume.Spec.Capacity.Storage()
    			if pvCap != nil {
    				pvCapCopy := pvCap.DeepCopy()
    				vmt.persistentVolumeSize = &pvCapCopy
    			}
    		}
    		dsw.volumesToMount[volumeName] = vmt
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                    variant('runtime') {
                        capability('org', 'testA', '1.0')
                        capability('cap')
                    }
                }
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
                        capability('cap')
                    }
                }
            }
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/mime/mediatype.go

    		}
    
    		pmap := params
    		if baseName, _, ok := strings.Cut(key, "*"); ok {
    			if continuation == nil {
    				continuation = make(map[string]map[string]string)
    			}
    			var ok bool
    			if pmap, ok = continuation[baseName]; !ok {
    				continuation[baseName] = make(map[string]string)
    				pmap = continuation[baseName]
    			}
    		}
    		if v, exists := pmap[key]; exists && v != value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top