Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for annotated (0.27 sec)

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

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Preconditions.java

      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.assertEvent(t, s.svcXdsName("svc1"))
    	s.assertNoEvent(t)
    
    	// We should now see the waypoint service IP when we look up the annotated svc
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("10.0.0.1"))[0].Address.GetService().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.10").AsSlice())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// direct is the set of module paths for which we believe the module provides
    	// a package directly imported by a package or test in the main module.
    	//
    	// The "direct" map controls which modules are annotated with "// indirect"
    	// comments in the go.mod file, and may impact which modules are listed as
    	// explicit roots (vs. indirect-only dependencies). However, it should not
    	// have a semantic effect on the build list overall.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * <<#rel4.8:pom_wildcard_exclusions,Gradle now honors implicit wildcards in Maven POM exclusions>>.
     * The Kotlin DSL now respects JSR-305 package annotations.
    +
    This will lead to some types annotated according to JSR-305 being treated as nullable where they were treated as non-nullable before.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      return absl::OkStatus();
    }
    
    void MarkForCompilationPassImpl::DumpPostClusteringGraphs() {
      DumpGraphToFile("mark_for_compilation", *graph_, flib_def_);
    
      // We also dump out an annotated version of the TF graph where the nodes
      // names are prefixed with the cluster names.  This can help visualizing the
      // clustering decisions on TensorBoard.
      Graph new_graph(graph_->op_registry());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) print(msg string) {
    	fmt.Printf("%5d: %s%s\n", p.line, p.indent, msg)
    }
    
    // ----------------------------------------------------------------------------
    // Package files
    //
    // Parse methods are annotated with matching Go productions as appropriate.
    // The annotations are intended as guidelines only since a single Go grammar
    // rule may be covered by multiple parse methods and vice versa.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that using a `@ServiceReference` or storing `BuildServiceProvider` in an `@Internal`-annotated property of a task is safe.
    Generally speaking, this limitation makes it impossible to use a `BuildService` to invalidate the configuration cache.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top