Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 649 for Marks (0.04 sec)

  1. guava/src/com/google/common/base/ElementTypesAreNonnullByDefault.java

    import com.google.common.annotations.GwtCompatible;
    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 30 14:50:30 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/ElementTypesAreNonnullByDefault.java

    import com.google.common.annotations.GwtCompatible;
    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output file for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/mark_functions_noinline.cc

    namespace mlir {
    namespace quant {
    namespace {
    
    // Name of the boolean attribute indicating whether the function can be
    // inlined or not.
    constexpr StringRef kTfNoinlineAttr = "tf._noinline";
    
    // This pass marks functions with the attribute `tf._noinline = true` so that
    // they aren't inlined by the `InlinerPass`. The names of the functions to be
    // marked noinline should be specified by the `noinline-functions` option.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 02:52:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/TransformedClosure.java

         */
        InputReferences inputReferences();
    
        /**
         * Returns the source location for this closure.
         */
        SourceLocation sourceLocation();
    
        /**
         * Marks this closure as a rule action, with the given inputs
         *
         * @param nestedRuleFactory Factory to use to create nested rules.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/stmtlines_test.go

    	}
    
    	if len(nonStmtLines)*100 > m*len(lines) {
    		t.Errorf("Saw too many (%s, > %d%%) lines without statement marks, total=%d, nostmt=%d ('-run TestStmtLines -v' lists failing lines)\n", runtime.GOARCH, m, len(lines), len(nonStmtLines))
    	}
    	t.Logf("Saw %d out of %d lines without statement marks", len(nonStmtLines), len(lines))
    	if testing.Verbose() {
    		sort.Slice(nonStmtLines, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/lifecycle/BuildPhaseStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.lifecycle;
    
    import org.gradle.api.Incubating;
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that marks the start of a build phase.
     *
     * @since 7.6
     */
    @Incubating
    public interface BuildPhaseStartEvent extends BuildPhaseProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 917 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ErroringResolveResult.java

     */
    package org.gradle.internal.resolve.result;
    
    import javax.annotation.Nullable;
    
    public interface ErroringResolveResult<E extends Throwable> extends ResolveResult {
        /**
         * Marks the resolution as failed with the given failure.
         */
        void failed(E error);
    
        /**
         * {@inheritDoc}
         */
        @Nullable
        @Override
        E getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 972 bytes
    - Viewed (0)
  9. src/internal/poll/sys_cloexec.go

    // setting SetNonblock and CloseOnExec.
    
    //go:build aix || darwin || (js && wasm) || wasip1
    
    package poll
    
    import (
    	"syscall"
    )
    
    // Wrapper around the accept system call that marks the returned file
    // descriptor as nonblocking and close-on-exec.
    func accept(s int) (int, syscall.Sockaddr, string, error) {
    	// See ../syscall/exec_unix.go for description of ForkLock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/FluidDependenciesResolveTest.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a test class as needing to run twice, with and without fluid dependencies enabled.
     * <p>
     * When fluid dependencies are enabled, any configuration that is a task input is resolved when constructing the task graph.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top