Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for visibility (0.16 sec)

  1. src/cmd/internal/obj/util.go

    	// TODO For now, this is only used for debugging output, and if we need more/better information, it might change.
    	// An example of what we might want to see is the full stack of positions for inlined code, so we get some visibility into what is recorded there.
    	pos := p.Ctxt.InnermostPos(p.Pos)
    	if !pos.IsKnown() {
    		return "<unknown file name>"
    	}
    	return pos.Filename()
    }
    
    var armCondCode = []string{
    	".EQ",
    	".NE",
    	".CS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     * late. Also, all life cycle methods are executed with a lock held, so subclasses can safely modify
     * shared state without additional synchronization necessary for visibility to later executions of
     * the life cycle methods.
     *
     * <h3>Usage Example</h3>
     *
     * <p>Here is a sketch of a service which crawls a website and uses the scheduling capabilities to
     * rate limit itself.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     * late. Also, all life cycle methods are executed with a lock held, so subclasses can safely modify
     * shared state without additional synchronization necessary for visibility to later executions of
     * the life cycle methods.
     *
     * <h3>Usage Example</h3>
     *
     * <p>Here is a sketch of a service which crawls a website and uses the scheduling capabilities to
     * rate limit itself.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_4x.md

            .build()
        ```
    
        This artifact has a dependency on Google's Brotli decoder (95 KiB).
    
     *  New: `EventListener.proxySelectStart()`, `proxySelectEnd()` events give visibility into the
        proxy selection process.
     *  New: `Response.byteString()` reads the entire response into memory as a byte string.
     *  New: `OkHttpClient.x509TrustManager` accessor.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    For more details on declaring module dependencies, please refer to https://www.oracle.com/corporate/features/understanding-java-9-modules.html[documentation on the Java Module System].
    
    === Declaring package visibility and services
    
    The Java module system supports additional more fine granular encapsulation concepts than Gradle itself currently does.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * to. The default value is true.
         *
         * @return true if this is a visible configuration.
         */
        boolean isVisible();
    
        /**
         * Sets the visibility of this configuration. When visible is set to true, this configuration is visible outside
         * the project it belongs to. The default value is true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    [[sec:grouping_tasks]]
    == Grouping tasks
    
    If you want to customize which tasks are shown to users when listed, you can group tasks and set the visibility of each group.
    
    NOTE: Remember, even if you _hide_ tasks, they are still available, and Gradle can still run them.
    
    Let's start with an example built by Gradle `init` for a Java application with multiple subprojects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/symtab.go

    		addr -= int64(xosect.Vaddr)
    	}
    	other := int(elf.STV_DEFAULT)
    	if ldr.AttrVisibilityHidden(x) {
    		// TODO(mwhudson): We only set AttrVisibilityHidden in ldelf, i.e. when
    		// internally linking. But STV_HIDDEN visibility only matters in object
    		// files and shared libraries, and as we are a long way from implementing
    		// internal linking for shared libraries and only create object files when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    	panic("unimplemented")
    }
    
    func TestEncode(t *testing.T) {
    	for _, tc := range []struct {
    		name string
    		in   runtime.Object
    		want []byte
    	}{
    		// The Go visibility rules for struct fields are amended for JSON when deciding
    		// which field to marshal or unmarshal. If there are multiple fields at the same
    		// level, and that level is the least nested (and would therefore be the nesting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    // are updated when necessary, to propagate tokens. The function may either be
    // rewritten to create a token or take in and return a token, depending on its
    // visibility and if there are any callers.
    LogicalResult RewriteFunction(
        OpBuilder& builder, ModuleOp module, FuncOp func,
        const llvm::SmallDenseMap<StringRef, FuncToRewrite>& funcs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top