Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for flavor (0.11 sec)

  1. src/flag/flag.go

    	import "flag"
    	var nFlag = flag.Int("n", 1234, "help message for flag n")
    
    If you like, you can bind the flag to a variable using the Var() functions.
    
    	var flagvar int
    	func init() {
    		flag.IntVar(&flagvar, "flagname", 1234, "help message for flagname")
    	}
    
    Or you can create custom flags that satisfy the Value interface (with
    pointer receivers) and couple them to flag parsing by
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // fallthrough from their incoming to the outgoing edge.
    func entropyScore(n *Node) int64 {
    	score := float64(0)
    
    	if len(n.In) == 0 {
    		score++ // Favor entry nodes
    	} else {
    		score += edgeEntropyScore(n, n.In, 0)
    	}
    
    	if len(n.Out) == 0 {
    		score++ // Favor leaf nodes
    	} else {
    		score += edgeEntropyScore(n, n.Out, n.Flat)
    	}
    
    	return int64(score*float64(n.Cum)) + n.Flat
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Throwables.java

        }
      }
    
      /**
       * Propagates {@code throwable} exactly as-is, if and only if it is an instance of {@link
       * RuntimeException}, {@link Error}, or {@code declaredType}.
       *
       * <p><b>Discouraged</b> in favor of calling {@link #throwIfInstanceOf} and {@link
       * #throwIfUnchecked}.
       *
       * @param throwable the Throwable to possibly propagate
       * @param declaredType the single checked exception type declared by the calling method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    				"token-id":     []byte("abcdef"),
    				"token-secret": []byte("abcdef0123456789"),
    				"expiration":   []byte(refTime.Format(time.RFC3339)),
    			},
    		},
    		{
    			"adds ttl and expiration, should favor expiration",
    			&BootstrapToken{
    				Token: &BootstrapTokenString{ID: "abcdef", Secret: "abcdef0123456789"},
    				TTL: &metav1.Duration{
    					Duration: mustParseDuration("2h", t),
    				},
    				Expires: &metav1.Time{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Throwables.java

        }
      }
    
      /**
       * Propagates {@code throwable} exactly as-is, if and only if it is an instance of {@link
       * RuntimeException}, {@link Error}, or {@code declaredType}.
       *
       * <p><b>Discouraged</b> in favor of calling {@link #throwIfInstanceOf} and {@link
       * #throwIfUnchecked}.
       *
       * @param throwable the Throwable to possibly propagate
       * @param declaredType the single checked exception type declared by the calling method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/go/types/typexpr.go

    	// TypeName and we also want a type (in which case we might detect
    	// a cycle which needs to be reported). Otherwise we can skip the
    	// call and avoid a possible cycle error in favor of the more
    	// informative "not a type/value" error that this function's caller
    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule.go

    	// Everything else is just heuristics.
    
    	ix := h.inBlockUses[x.ID]
    	iy := h.inBlockUses[y.ID]
    	if ix != iy {
    		return ix // values with in-block uses come earlier
    	}
    
    	if x.Pos != y.Pos { // Favor in-order line stepping
    		return x.Pos.Before(y.Pos)
    	}
    	if x.Op != OpPhi {
    		if c := len(x.Args) - len(y.Args); c != 0 {
    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

    import org.gradle.process.ExecSpec
    import org.gradle.process.JavaExecSpec
    import java.io.File
    import java.net.URI
    
    
    /**
     * Base contract for all Gradle Kotlin DSL scripts.
     *
     * This is the Kotlin flavored equivalent of [org.gradle.api.Script].
     *
     * It is not implemented directly by the IDE script templates to overcome ambiguous conflicts and Kotlin language
     * limitations.
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top