Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 437 for actor (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    // d == result * factor ^ times
    // d may be modified in place.
    // If d == 0, then the return values will be (0, 0)
    func removeBigIntFactors(d, factor *big.Int) (result *big.Int, times int32) {
    	q := big.NewInt(0)
    	m := big.NewInt(0)
    	for d.Cmp(bigZero) != 0 {
    		q.DivMod(d, factor, m)
    		if m.Cmp(bigZero) != 0 {
    			break
    		}
    		times++
    		d, q = q, d
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    // found.
    func (ut UnitType) autoScale(value float64) (float64, string, bool) {
    	var f float64
    	var unit string
    	for _, u := range ut.Units {
    		if u.Factor >= f && (value/u.Factor) >= 1.0 {
    			f = u.Factor
    			unit = u.CanonicalName
    		}
    	}
    	if f == 0 {
    		return 0, "", false
    	}
    	return value / f, unit, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/PostStreaming.java

            sink.writeUtf8("-------\n");
            for (int i = 2; i <= 997; i++) {
              sink.writeUtf8(String.format(" * %s = %s\n", i, factor(i)));
            }
          }
    
          private String factor(int n) {
            for (int i = 2; i < n; i++) {
              int x = n / i;
              if (x * i == n) return factor(x) + " × " + i;
            }
            return Integer.toString(n);
          }
        };
    
        Request request = new Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jul 06 03:18:15 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java

                sink.writeUtf8(String.format(" * %s = %s\n", i, factor(i)));
              }
              sink.close();
            } catch (IOException | InterruptedException e) {
              e.printStackTrace();
            }
          }
    
          private String factor(int n) {
            for (int i = 2; i < n; i++) {
              int x = n / i;
              if (x * i == n) return factor(x) + " × " + i;
            }
            return Integer.toString(n);
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jul 06 03:18:15 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginConfigurationException.java

            super(originalMessage, cause);
            this.pluginDescriptor = pluginDescriptor;
            this.originalMessage = originalMessage;
        }
    
        /**
         * Ctor left for binary compatibility.
         *
         * @deprecated Use {@link #PluginConfigurationException(PluginDescriptor, String, Throwable)}
         */
        @Deprecated
        public PluginConfigurationException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/internal/trace/mud_test.go

    // million).
    // TODO(amedee) dup of gc_test.go
    func aeq(x, y float64) bool {
    	if x < 0 && y < 0 {
    		x, y = -x, -y
    	}
    	const digits = 8
    	factor := 1 - math.Pow(10, -digits+1)
    	return x*factor <= y && y*factor <= x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/encoding/json/indent.go

    	}
    	return dst
    }
    
    // indentGrowthFactor specifies the growth factor of indenting JSON input.
    // Empirically, the growth factor was measured to be between 1.4x to 1.8x
    // for some set of compacted JSON with the indent being a single tab.
    // Specify a growth factor slightly larger than what is observed
    // to reduce probability of allocation in appendIndent.
    // A factor no higher than 2 ensures that wasted space never exceeds 50%.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. docs/pt/docs/help-fastapi.md

    ## Conect-se com o autor
    
    Você pode se conectar <a href="https://tiangolo.com" class="external-link" target="_blank">comigo (Sebastián Ramírez / `tiangolo`)</a>, o autor.
    
    Você pode:
    
    * <a href="https://github.com/tiangolo" class="external-link" target="_blank">Me siga no **GitHub**</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    errors << "Nullability breaking change"
                }
    
            } else if (member instanceof JApiConstructor) {
    
                JApiConstructor ctor = (JApiConstructor) member
                inspectParametersNullabilityOf(ctor.oldConstructor.get(), ctor.newConstructor.get())
    
            } else if (member instanceof JApiMethod) {
    
                JApiMethod method = (JApiMethod) member
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

        /**
         * Default ctor for plexus compatibility: lifecycles are most commonly defined in Plexus XML, that does field
         * injection. Still, for Plexus to be able to instantiate this class, default ctor is needed.
         *
         * @deprecated Should not be used in Java code.
         */
        @Deprecated
        public DefaultLifecycleMapping() {}
    
        /**
         * Ctor to be used in Java code/providers.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top