Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,389 for addLink (0.14 sec)

  1. src/cmd/vet/README

    so checks must be likely enough to find real problems that they are worth the
    overhead of the added check. A new check that finds only a handful of problems
    across all existing programs, even if the problem is significant, is not worth
    adding to the suite everyone runs daily.
    
    Precision:
    
    Most of vet's checks are heuristic and can generate both false positives (flagging
    correct programs) and false negatives (not flagging incorrect ones). The rate of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  2. src/io/ioutil/tempfile.go

    import (
    	"os"
    )
    
    // TempFile creates a new temporary file in the directory dir,
    // opens the file for reading and writing, and returns the resulting *[os.File].
    // The filename is generated by taking pattern and adding a random
    // string to the end. If pattern includes a "*", the random string
    // replaces the last "*".
    // If dir is the empty string, TempFile uses the default directory
    // for temporary files (see [os.TempDir]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DefaultPendingDependenciesVisitor.java

                if (markNotPending(key)) {
                    return PendingState.NOT_PENDING_ACTIVATING;
                } else {
                    return PendingState.NOT_PENDING;
                }
            }
    
            // Adding an optional dependency: see if we already have a hard dependency on the same module
            ModuleResolveState module = resolveState.getModule(key);
            boolean pending = module.isPending();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-with-transform/README.adoc

    This sample shows how link:{userManualPath}/artifact_transforms.html[artifact transforms] can be utilised to turn traditional Java libraries into Java Modules by adding additional information to the corresponding Jars.
    For that, a plugin called `extra-java-module-info` is defined in the `buildSrc` folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimap.java

     *
     * <p>Multimaps are commonly used in places where a {@code Map<K, Collection<V>>} would otherwise
     * have appeared. The differences include:
     *
     * <ul>
     *   <li>There is no need to populate an empty collection before adding an entry with {@link #put
     *       put}.
     *   <li>{@code get} never returns {@code null}, only an empty collection.
     *   <li>A key is contained in the multimap if and only if it maps to at least one value. Any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. src/crypto/x509/cert_pool.go

    	// form to make CertPool.Subjects (as used by crypto/tls) do
    	// fewer allocations.
    	rawSubject []byte
    
    	// constraint is a function to run against a chain when it is a candidate to
    	// be added to the chain. This allows adding arbitrary constraints that are
    	// not specified in the certificate itself.
    	constraint func([]*Certificate) error
    
    	// getCert returns the certificate.
    	//
    	// It is not meant to do network operations or anything else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableMultisetGwtSerializationDependencies.java

     * tries to refer to our dummy serializer for the superclass,
     * ImmutableMultiset_CustomFieldSerializer. But that type has no methods (since it's never actually
     * used). We could probably fix the problem by adding dummy methods to that class, but that is
     * starting to sound harder than taking the superclass approach, which I've been coming to like,
     * anyway, since it doesn't require us to declare dummy methods (though occasionally constructors)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/vcs/VersionControlSpec.java

         * @since 4.5
         */
        void setRootDir(String rootDir);
    
        /**
         * Configure injected plugins into this build.
         *
         * @param configuration the configuration action for adding injected plugins
         * @since 4.6
         */
        void plugins(Action<? super InjectedPluginDependencies> configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses.go

    	CIDRRules []CIDRRule
    
    	// DefaultAddress is the address (hostname or IP and port) that should be used in
    	// if no CIDR matches more specifically.
    	DefaultAddress string
    }
    
    // CIDRRule is a rule for adding an alternate path to the master based on matching CIDR
    type CIDRRule struct {
    	IPRange net.IPNet
    
    	// Address is the address (hostname or IP and port) that should be used in
    	// if this CIDR matches
    	Address string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

        // TODO(b/184420848): We may not need to skip aliasing for entire function
        // in case of multiple assigns.
        if (alias_info.output_index != kUnassigned) {
          LLVM_DEBUG(llvm::dbgs()
                     << "Skip adding aliasing information because of multiple "
                        "assigns to "
                        "the same resource from tf_device.cluster_func outputs. "
                        "This can "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top