Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for addType (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		pp := (*RawSockaddrTIPC)(unsafe.Pointer(rsa))
    
    		sa := &SockaddrTIPC{
    			Scope: int(pp.Scope),
    		}
    
    		// Determine which union variant is present in pp.Addr by checking
    		// pp.Addrtype.
    		switch pp.Addrtype {
    		case TIPC_SERVICE_RANGE:
    			sa.Addr = (*TIPCServiceRange)(unsafe.Pointer(&pp.Addr))
    		case TIPC_SERVICE_ADDR:
    			sa.Addr = (*TIPCServiceName)(unsafe.Pointer(&pp.Addr))
    		case TIPC_SOCKET_ADDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    				// short-circuited by the EXT chain.)
    				filterRules.Write(
    					"-A", string(kubeExternalServicesChain),
    					"-m", "comment", "--comment", externalTrafficFilterComment,
    					"-m", "addrtype", "--dst-type", "LOCAL",
    					"-m", protocol, "-p", protocol,
    					"--dport", strconv.Itoa(svcInfo.NodePort()),
    					"-j", externalTrafficFilterTarget,
    				)
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		externalTrafficOnlyArgs := append(args,
    			"-m", "physdev", "!", "--physdev-is-in",
    			"-m", "addrtype", "!", "--src-type", "LOCAL")
    		proxier.natRules.Write(externalTrafficOnlyArgs, "-j", "ACCEPT")
    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    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. pilot/pkg/config/kube/gateway/conversion.go

    			for _, addr := range addressesToReport {
    				var addrType k8s.AddressType
    				if _, err := netip.ParseAddr(addr); err == nil {
    					addrType = k8s.IPAddressType
    				} else {
    					addrType = k8s.HostnameAddressType
    				}
    				gs.Addresses = append(gs.Addresses, k8s.GatewayStatusAddress{
    					Value: addr,
    					Type:  &addrType,
    				})
    			}
    		}
    		// Prune listeners that have been removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    }
    
    // nolint: unparam
    func createEndpointSliceWithType(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string,
    	ports []v1.EndpointPort, ips []string, addrType discovery.AddressType,
    ) {
    	esps := make([]discovery.EndpointPort, 0)
    	for _, name := range ports {
    		n := name // Create a stable reference to take the pointer from
    		esps = append(esps, discovery.EndpointPort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	}
    	gateway.Labels = labels
    
    	if ready {
    		addrType := k8sbeta.IPAddressType
    		gateway.Status = k8sbeta.GatewayStatus{
    			// addresses:
    			// - type: IPAddress
    			//   value: 10.96.59.188
    			Addresses: []k8sv1.GatewayStatusAddress{
    				{
    					Type:  &addrType,
    					Value: ip,
    				},
    			},
    		}
    	}
    	s.grc.CreateOrUpdate(&gateway)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	t.Align = -1
    	t.C = &TypeRepr{Repr: dtype.Common().Name}
    	c.m[key] = t
    
    	switch dt := dtype.(type) {
    	default:
    		fatalf("%s: unexpected type: %s", lineno(pos), dtype)
    
    	case *dwarf.AddrType:
    		if t.Size != c.ptrSize {
    			fatalf("%s: unexpected: %d-byte address type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Go = c.uintptr
    		t.Align = t.Size
    
    	case *dwarf.ArrayType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          }
          auto output_shape = DenseElementsAttr::get(shape_type, shape);
          auto shape_op = builder.create<tfl::ConstOp>(loc, output_shape);
          op_state.addOperands({shape_op});
        }
    
        op_state.addTypes({type});
      }
    
      // While the last several tensors could be optional tensors for an tfl op, the
      // number of input operands could vary. Gets the min/max number of
      // operands from tflite op name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top