Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for sumneg (1.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        //    6s (10%) │ self 3s (5%)
        //    6s (10%) │ 12s (20%) 🠆 18s (30%)
        let result = percentText(box.sumpos - box.sumneg);
        if (box.self != 0) {
          result += " │ self " + unitText(box.self);
        }
        if (diff && box.sumpos > 0 && box.sumneg > 0) {
          result += " │ " + diffText(box.sumneg, box.sumpos);
        }
        return result;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. internal/config/subnet/config.go

    	config.KV{
    		Key:   config.Proxy,
    		Value: "",
    	},
    }
    
    // Config represents the subnet related configuration
    type Config struct {
    	// The subnet license token - Deprecated Dec 2021
    	License string `json:"license"`
    
    	// The subnet api key
    	APIKey string `json:"apiKey"`
    
    	// The HTTP(S) proxy URL to use for connecting to SUBNET
    	Proxy string `json:"proxy"`
    
    	// Transport configured with proxy_url if set optionally.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. samples/kind-lb/README.md

      -w|--worker-nodes  - the number of worker nodes to create. Default is 1
      --pod-subnet       - the pod subnet to specify. Default is 10.244.0.0/16 for IPv4 and fd00:10:244::/56 for IPv6
      --service-subnet   - the service subnet to specify. Default is 10.96.0.0/16 for IPv4 and fd00:10:96::/112 for IPv6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. cluster/gce/upgrade-aliases.sh

      local allow_overlap=$1
      if [ "${allow_subnet_cidr_routes_overlap,,}" = "${allow_overlap}" ]; then
        echo "Subnet ${IP_ALIAS_SUBNETWORK}'s allowSubnetCidrRoutesOverlap is already set as $1"
        return
      fi
    
      echo "Setting subnet \"${IP_ALIAS_SUBNETWORK}\" allowSubnetCidrRoutesOverlap to $1"
      local fingerprint
      fingerprint=$(gcloud compute networks subnets describe \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants_test.go

    		expectedErr                 bool
    	}{
    		{
    			name:        "subnet mask 24",
    			svcSubnet:   "10.96.0.12/24",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    		{
    			name:        "subnet mask 12",
    			svcSubnet:   "10.96.0.0/12",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    		{
    			name:        "subnet mask 26",
    			svcSubnet:   "10.87.116.64/26",
    			expectedIP:  "10.87.116.65",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator.go

    }
    
    // allocateNextService tries to allocate a free IP address within the subnet.
    // If the subnet is big enough, it partitions the subnet into two subranges,
    // delimited by a.rangeOffset.
    // It tries to allocate a free IP address from the upper subnet first and
    // falls back to the lower subnet.
    // It starts allocating from a random IP within each range.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. cmd/license-update.go

    		return
    	}
    
    	lic := r.String()
    	if lic == globalSubnetConfig.License {
    		// license hasn't changed.
    		return
    	}
    
    	kv := "subnet license=" + lic
    	result, err := setConfigKV(ctx, objectAPI, []byte(kv))
    	if err != nil {
    		internalLogIf(ctx, fmt.Errorf("error setting subnet license config: %w", err))
    		return
    	}
    
    	if result.Dynamic {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. samples/kind-lb/setupkind.sh

      echo "    -w|--worker-nodes  - the number of worker nodes to create. Default is 1"
      echo "    --pod-subnet       - the pod subnet to specify. Default is 10.244.0.0/16 for IPv4 and fd00:10:244::/56 for IPv6"
      echo "    --service-subnet   - the service subnet to specify. Default is 10.96.0.0/16 for IPv4 and fd00:10:96::/112 for IPv6"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		}
    	}
    	// validate the subnet/s
    	for _, s := range subnets {
    		numAddresses := netutils.RangeSize(s)
    		if numAddresses < minAddrs {
    			allErrs = append(allErrs, field.Invalid(fldPath, s.String(), fmt.Sprintf("subnet with %d address(es) is too small, the minimum is %d", numAddresses, minAddrs)))
    		}
    
    		// Warn when the subnet is in site-local range - i.e. contains addresses that belong to fec0::/10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// that takes an object returned from the underlying storage layer
    	// (etcd) and performs decoding of the response object.
    	// When called multiple times, the latency incurred inside to
    	// decode func each time will be summed up.
    	DecodeTracker DurationTracker
    }
    
    type latencyTrackersKeyType int
    
    // latencyTrackersKey is the key that associates a LatencyTrackers
    // instance with the request context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top