Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 161 for flavor (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/types2/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.6K bytes
    - Viewed (0)
  5. .bazelrc

    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    #     rbe_base:  General RBE options shared by all flavors.
    #     rbe_linux: General RBE options used on all linux builds.
    #     rbe_win_base:   General RBE options used on all Windows builds. Not to be used standalone.
    #     rbe_win_clang:  Options specific to compiling using Clang.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                    if (generatedMethodDetector.test(metadataBuilder.getter)) {
                        continue;
                    }
                    // The 'is'-getter is ignored, we can skip it in favor of the 'get'-getter
                    if (ignoredMethodAnnotations.stream()
                        .anyMatch(metadataBuilder::hasAnnotation)) {
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.MarkDeprecated("experimental-mounter-path", "will be removed in 1.25 or later. in favor of using CSI.")
    	fs.StringVar(&f.CloudConfigFile, "cloud-config", f.CloudConfigFile, "The path to the cloud provider configuration file. Empty string for no configuration file.")
    	fs.MarkDeprecated("cloud-config", "will be removed in 1.25 or later, in favor of removing cloud provider code from Kubelet.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/parse.go

    	// ~abc~ and ~~abc~~ as strikethrough syntax, producing
    	// <del>abc</del> in HTML.
    	Strikethrough bool
    
    	// TaskListItems determines whether the parser accepts
    	// “task list items” as defined in GitHub Flavored Markdown.
    	// When a list item begins with the plain text [ ] or [x]
    	// that turns into an unchecked or checked check box.
    	TaskListItems bool
    
    	// TODO
    	AutoLinkText       bool
    	AutoLinkAssumeHTTP bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb_test.go

    		if bytes.Contains(l, eop) {
    			return i
    		}
    	}
    	return 0
    }
    
    func gdbArgsFixup(args []string) {
    	if runtime.GOOS != "windows" {
    		return
    	}
    	// On Windows, some gdb flavors expect -ex and -iex arguments
    	// containing spaces to be double quoted.
    	var quote bool
    	for i, arg := range args {
    		if arg == "-iex" || arg == "-ex" {
    			quote = true
    		} else if quote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/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
    - 24.8K bytes
    - Viewed (0)
Back to top