Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for sumneg (0.18 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/subnet.go

    package subnet
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"mime/multipart"
    	"net/http"
    	"time"
    
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    const (
    	respBodyLimit = 1 << 20 // 1 MiB
    
    	// LoggerWebhookName - subnet logger webhook target
    	LoggerWebhookName = "subnet"
    )
    
    // Upload given file content (payload) to specified URL
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 27 16:35:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/anames.go

    	"SHA1M",
    	"SHA1P",
    	"SHA1SU0",
    	"SHA1SU1",
    	"SHA256H",
    	"SHA256H2",
    	"SHA256SU0",
    	"SHA256SU1",
    	"SHA512H",
    	"SHA512H2",
    	"SHA512SU0",
    	"SHA512SU1",
    	"SMADDL",
    	"SMC",
    	"SMNEGL",
    	"SMSUBL",
    	"SMULH",
    	"SMULL",
    	"STLR",
    	"STLRB",
    	"STLRH",
    	"STLRW",
    	"STLXP",
    	"STLXPW",
    	"STLXR",
    	"STLXRB",
    	"STLXRH",
    	"STLXRW",
    	"STP",
    	"STPW",
    	"STXP",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. internal/config/subnet/help.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package subnet
    
    import "github.com/minio/minio/internal/config"
    
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// HelpSubnet - provides help for subnet api key config
    	HelpSubnet = config.HelpKVS{
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 13 19:24:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/util.go

    import (
    	"errors"
    	"net"
    	"reflect"
    	"strings"
    	"syscall"
    )
    
    // IPNetEqual checks if the two input IPNets are representing the same subnet.
    // For example,
    //
    //	10.0.0.1/24 and 10.0.0.0/24 are the same subnet.
    //	10.0.0.1/24 and 10.0.0.0/25 are not the same subnet.
    func IPNetEqual(ipnet1, ipnet2 *net.IPNet) bool {
    	if ipnet1 == nil || ipnet2 == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top