Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 503 for Percent (0.24 sec)

  1. src/cmd/cover/cfg_test.go

    	if inf, err := os.Open(mpath); err != nil {
    		t.Fatalf("meta-data file not created: %v", err)
    	} else {
    		inf.Close()
    	}
    
    	// Make sure it is digestible.
    	cdargs := []string{"tool", "covdata", "percent", "-i", mdir}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), cdargs...)
    	run(cmd, t)
    }
    
    func testCoverNoTestsNoFuncs(t *testing.T) {
    	t.Parallel()
    	dir := tempDir(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    		}
    	}
    	return value, nil
    }
    
    // GetValueFromIntOrPercent was deprecated in favor of
    // GetScaledValueFromIntOrPercent. This method was treating all int as a numeric value and all
    // strings with or without a percent symbol as a percentage value.
    // Deprecated
    func GetValueFromIntOrPercent(intOrPercent *IntOrString, total int, roundUp bool) (int, error) {
    	if intOrPercent == nil {
    		return 0, errors.New("nil value for IntOrString")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testsupport.go

    	if _, err := os.Stat(metafilespath); err == nil {
    		if err := ts.readAuxMetaFiles(metafilespath, importpaths); err != nil {
    			return err
    		}
    	}
    
    	// Emit percent.
    	if err := ts.cf.EmitPercent(w, cpkg, true, true); err != nil {
    		return err
    	}
    
    	// Emit text output.
    	if tf != nil {
    		if err := ts.cf.EmitTextual(tf); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    func (s *Schedule) append(n ir.Node) {
    	s.Out = append(s.Out, n)
    }
    
    // StaticInit adds an initialization statement n to the schedule.
    func (s *Schedule) StaticInit(n ir.Node) {
    	if !s.tryStaticInit(n) {
    		if base.Flag.Percent != 0 {
    			ir.Dump("StaticInit failed", n)
    		}
    		s.append(n)
    	}
    }
    
    // varToMapInit holds book-keeping state for global map initialization;
    // it records the init function created by the compiler to host the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

         * with Chrome's behavior (which also experimentally seems to match what IE does), but if you
         * actually want to have a good chance of things working, please avoid double-quotes, newlines,
         * percent signs, and the like in your field names.
         */
        internal fun StringBuilder.appendQuotedString(key: String) {
          append('"')
          for (i in 0 until key.length) {
            when (val ch = key[i]) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/fmt/scan.go

    }
    
    const (
    	floatVerbs = "beEfFgGv"
    
    	hugeWid = 1 << 30
    
    	intBits     = 32 << (^uint(0) >> 63)
    	uintptrBits = 32 << (^uintptr(0) >> 63)
    )
    
    // scanPercent scans a literal percent character.
    func (s *ss) scanPercent() {
    	s.SkipSpace()
    	s.notEOF()
    	if !s.accept("%") {
    		s.errorString("missing literal %")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. src/net/ipsock.go

    	}
    
    	port = hostport[i+1:]
    	return host, port, nil
    }
    
    func splitHostZone(s string) (host, zone string) {
    	// The IPv6 scoped addressing zone identifier starts after the
    	// last percent sign.
    	if i := bytealg.LastIndexByteString(s, '%'); i > 0 {
    		host, zone = s[:i], s[i+1:]
    	} else {
    		host = s
    	}
    	return
    }
    
    // JoinHostPort combines host and port into a network address of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/net/url/url.go

    			// in the host component %-encoding can only be used
    			// for non-ASCII bytes.
    			// But https://tools.ietf.org/html/rfc6874#section-2
    			// introduces %25 being allowed to escape a percent sign
    			// in IPv6 scoped-address literals. Yay.
    			if mode == encodeHost && unhex(s[i+1]) < 8 && s[i:i+3] != "%25" {
    				return "", EscapeError(s[i : i+3])
    			}
    			if mode == encodeZone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. licenses/cloud.google.com/go/compute/metadata/LICENSE

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 23:31:22 UTC 2022
    - 11.1K bytes
    - Viewed (0)
Back to top