Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for flavors (0.57 sec)

  1. android/guava/src/com/google/common/collect/ImmutableMap.java

       * Map.getOrDefault}</a>.
       *
       * @since 23.5 (but since 21.0 in the JRE <a
       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>).
       *     Note, however, that Java 8+ users can call this method with any version and flavor of
       *     Guava.
       */
      // @Override under Java 8 / API Level 24
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/nilcheck.go

    				if f.fe.Debug_checknil() && v.Pos.Line() > 1 {
    					f.Warnl(v.Pos, "removed nil check")
    				}
    				// For bug 33724, policy is that we might choose to bump an existing position
    				// off the faulting load/store in favor of the one from the nil check.
    
    				// Iteration order means that first nilcheck in the chain wins, others
    				// are bumped into the ordinary statement preservation algorithm.
    				u := b.Values[unnecessary.get(v.Args[0].ID)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    This information is used to generate documentation for each Gradle version
    on [docs.gradle.org](https://docs.gradle.org/).
    The documentation is mostly implemented in Asciidoc
    though we use GitHub-flavored Markdown for internal documentation too.
    
    You can generate docs by running `./gradlew :docs:docs`.
    This will build the whole documentation locally in [platforms/documentation](./platforms/documentation).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                            + ") from repository " + repository.getId() + " (" + repository.getUrl()
                                            + ") in favor of local copy");
                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top