Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 8,457 for internally (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // A class that manages information about `QuantizableUnit`s post-quantization,
    // internally in the form of `QuantizationUnits`. It is used to collect
    // quantization summary from a quantized `ModuleOp` and emit it in a human- and
    // machine-readable format.
    class QuantizationReport {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/sym/segment.go

    	// may turn into multiple host relocations.
    	Relcount uint32
    	Sym      LoaderSym // symbol for the section, if any
    	Index    uint16    // each section has a unique index, used internally
    
    	Compressed bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/UnionVersionSelector.java

                }
            }
            return true;
        }
    
        @Override
        public String getSelector() {
            throw new UnsupportedOperationException("Union selectors should only be used internally and don't provide a public string representation");
        }
    
        @Override
        public List<VersionSelector> getSelectors() {
            return selectors;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top