Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 242 for sumneg (1.34 sec)

  1. src/net/net_windows_test.go

    	//    DHCP enabled:                         Yes
    	//    IP Address:                           10.0.0.2
    	//    Subnet Prefix:                        10.0.0.0/24 (mask 255.255.255.0)
    	//    IP Address:                           10.0.0.3
    	//    Subnet Prefix:                        10.0.0.0/24 (mask 255.255.255.0)
    	//    Default Gateway:                      10.0.0.254
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

      # Size of ranges allocated to each node.
      IP_ALIAS_SIZE="/$(get-alias-range-size "${MAX_PODS_PER_NODE}")"
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
      # If we're using custom network, use the subnet we already create for it as the one for ip-alias.
      # Note that this means SUBNETWORK would override KUBE_GCE_IP_ALIAS_SUBNETWORK in case of custom network.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_sumdb_file_path.txt

    # downloading a new module should fail, even if a subsequent
    # proxy contains a more complete mirror of the sum database.
    #
    # TODO(bcmills): The error message here is a bit redundant.
    # It comes from the sumweb package, which isn't yet producing structured errors.
    [GOOS:windows] env GOPROXY=file:///$WORK/sumproxy,https://proxy.golang.org
    [!GOOS:windows] env GOPROXY=file://$WORK/sumproxy,https://proxy.golang.org
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. internal/config/drive/drive.go

    )
    
    // DefaultKVS - default KVS for drive
    var DefaultKVS = config.KVS{
    	config.KV{
    		Key:   MaxTimeout,
    		Value: "30s",
    	},
    }
    
    var configLk sync.RWMutex
    
    // Config represents the subnet related configuration
    type Config struct {
    	// MaxTimeout - maximum timeout for a drive operation
    	MaxTimeout time.Duration `json:"maxTimeout"`
    }
    
    // Update - updates the config with latest values
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

           exit 1;;
      esac
    
      # Look for the alias subnet, it must exist and have a secondary
      # range configured.
      local subnet
      subnet=$(gcloud compute networks subnets describe \
        --project "${NETWORK_PROJECT}" \
        --region "${REGION}" \
        "${IP_ALIAS_SUBNETWORK}" 2>/dev/null || true)
      if [[ -z "${subnet}" ]]; then
        echo "Creating subnet ${NETWORK}:${IP_ALIAS_SUBNETWORK}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. docs/debugging/README.md

    ```sh
    mc admin trace --verbose myminio
    ```
    
    To trace entire HTTP request and also internode communication
    
    ```sh
    mc admin trace --all --verbose myminio
    ```
    
    ## Subnet Health
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. cluster/gce/config-default.sh

      IP_ALIAS_SIZE="/$(get-alias-range-size "${MAX_PODS_PER_NODE}")"
      export IP_ALIAS_SIZE
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
      # If we're using custom network, use the subnet we already create for it as the one for ip-alias.
      # Note that this means SUBNETWORK would override KUBE_GCE_IP_ALIAS_SUBNETWORK in case of custom network.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

                          "datastore_type": "kubernetes",
                          "nodename": "__KUBERNETES_NODE_NAME__",
                          "ipam": {
                            "type": "host-local",
                            "subnet": "usePodCidr"
                          },
                          "policy": {
                            "type": "k8s"
                          },
                          "kubernetes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. internal/http/headers.go

    	MinIOLifecycleCfgUpdatedAt = "X-Minio-LifecycleConfig-UpdatedAt"
    	// MinIOCompressed is returned when object is compressed
    	MinIOCompressed = "X-Minio-Compressed"
    
    	// SUBNET related
    	SubnetAPIKey = "x-subnet-api-key"
    )
    
    // Common http query params S3 API
    const (
    	VersionID = "versionId"
    
    	PartNumber = "partNumber"
    
    	UploadID = "uploadId"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    func (subnet HTTPProxyCIDRCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating http connectivity to first IP address in the CIDR")
    	if len(subnet.CIDR) == 0 {
    		return nil, nil
    	}
    
    	_, cidr, err := netutils.ParseCIDRSloppy(subnet.CIDR)
    	if err != nil {
    		return nil, []error{errors.Wrapf(err, "error parsing CIDR %q", subnet.CIDR)}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top