Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for internally (0.29 sec)

  1. docs/en/docs/tutorial/encoder.md

    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

         * returned.
         */
        Set<ExcludeRule> getRules();
    
        /**
         * Adds an exclude rule to this container. The ExcludeRule object gets created internally based on the map values
         * passed to this method. The possible keys for the map are:
         *
         * <ul>
         * <li><code>group</code> - The exact name of the organization or group that should be excluded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_undef.txt

    # imported packages).
    #
    # The _cgo_import.go file is only needed for internal linking.
    # When generating _cgo_import.go for package c fails, an ordinary
    # external link should still work. But an internal link is expected
    # to fail, because the failure to create _cgo_import.go should cause
    # the linker to report an inability to internally link.
    
    [short] skip
    [!cgo] skip
    [!exec:ar] skip
    
    cc -c -o a/b.syso b/b.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 20:56:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmLibraryProjectInitDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.model.Description;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    
    import java.util.List;
    
    import static com.google.common.collect.Lists.newArrayList;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/syscall/pwd_plan9.go

    )
    
    var (
    	wdmu  sync.Mutex // guards following
    	wdSet bool
    	wdStr string
    )
    
    // Ensure current working directory seen by this goroutine matches
    // the most recent [Chdir] called in any goroutine. It's called internally
    // before executing any syscall which uses a relative pathname. Must
    // be called with the goroutine locked to the OS thread, to prevent
    // rescheduling on a different thread (potentially with a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/immediate_execution_distributed_manager.h

                                                int keep_alive_secs) = 0;
    
      // Set up a multi-client distributed execution environment. Must be called
      // on all tasks in the cluster. This call internally coordinates with other
      // tasks to initialize the eager context and TF server for multi-client
      // execution.
      virtual Status EnableCollectiveOps(const ServerDef& server_def) = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/README.vendor

    be resolved normally. Consequently, a binary may be built with two
    copies of a package at different versions if the package is
    imported normally and vendored by the standard library.
    
    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

    import org.bouncycastle.openpgp.PGPPublicKey;
    import org.bouncycastle.openpgp.PGPSignature;
    
    import java.util.Locale;
    
    /**
     * A normalised form for keys, which are friendliest for users as hex strings but used internally as longs.
     */
    public class PgpKeyId implements Comparable<PgpKeyId> {
    
        private final long asLong;
        private final String asHex;
    
        public PgpKeyId(long keyId) {
            asLong = keyId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. cmd/admin-handlers-site-replication.go

    func getSRAddOptions(r *http.Request) (opts madmin.SRAddOptions) {
    	opts.ReplicateILMExpiry = r.Form.Get("replicateILMExpiry") == "true"
    	return
    }
    
    // SRPeerJoin - PUT /minio/admin/v3/site-replication/join
    //
    // used internally to tell current cluster to enable SR with
    // the provided peer clusters and service account.
    func (a adminAPIHandlers) SRPeerJoin(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. cmd/metrics-v2_test.go

    	defer ticker.Stop()
    	for _, obs := range observations {
    		// Send observations once every 1ms, to simulate delay between
    		// observations. This is to test the channel based
    		// synchronization used internally.
    		select {
    		case <-ticker.C:
    			ttfbHist.With(prometheus.Labels{"api": obs.label}).Observe(obs.val)
    		}
    	}
    
    	metrics := getHistogramMetrics(ttfbHist, getBucketTTFBDistributionMD(), false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 04 18:05:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top