Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 672 for therefore (0.16 sec)

  1. pkg/kubelet/kuberuntime/legacy.go

    import (
    	"fmt"
    	"path/filepath"
    	"strings"
    
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // This file implements the functions that are needed for backward
    // compatibility. Therefore, it imports various kubernetes packages
    // directly.
    
    const (
    	// legacyContainerLogsDir is the legacy location of container logs. It is the same with
    	// kubelet.containerLogsDir.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/crypto/aes/cipher_s390x.go

    //go:noescape
    func cryptBlocks(c code, key, dst, src *byte, length int)
    
    func newCipher(key []byte) (cipher.Block, error) {
    	// The aesCipherAsm type implements the cbcEncAble, cbcDecAble,
    	// ctrAble and gcmAble interfaces. We therefore need to check
    	// for all the features required to implement these modes.
    	// Keep in sync with crypto/tls/common.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/SuppliedComponentMetadataSerializer.java

     * of a {@link org.gradle.api.artifacts.ComponentMetadataSupplier component metadata supplier} rule.
     * It does NOT contain full metadata, which can be confusing given the name of the class it's
     * supposed to serialize. This is, therefore, limited to the metadata necessary to perform selection
     * in a dynamic version resolver.
     */
    public class SuppliedComponentMetadataSerializer extends AbstractSerializer<ComponentMetadata> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	//     rightmost-wins list of options. But more importantly:
    	// (b) it is impossible to detect changes to the effective
    	//     setting caused by os.Setenv("GODEBUG"), as happens in
    	//     many tests. Therefore any attempt to cache the result
    	//     is just incorrect.
    	fset := token.NewFileSet()
    	f, _ := parser.ParseFile(fset, "a.go", "package p; type A = int", 0)
    	pkg, _ := new(types.Config).Check("p", fset, []*ast.File{f}, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

             * Normally, without intervention everything would batch
             * with everything else. If the below clause evaluates true
             * the andx command will not be written and therefore the
             * response will not read a batched command and therefore
             * the 'received' member of the response object will not
             * be set to true indicating the send and sendTransaction
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // second version otherwise.  Since Secret is a secret and incomplete
    // type, the only expression a user can write that has type Secret* is
    // a null pointer literal.  Therefore, we know that x is a null
    // pointer literal if and only if the first version is picked by the
    // compiler.
    char IsNullLiteralHelper(Secret* p);
    char (&IsNullLiteralHelper(...))[2];  // NOLINT
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

        }
    
        /**
         * The macOS native watcher reports the canonical path for watched paths.
         * That means that we would not invalidate the right locations in the virtual file system on macOS.
         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
         * Note that the project directory is canonicalized by Gradle, so the project directory can always be watched.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/WithEstimatedSize.java

    public interface WithEstimatedSize {
        /**
         * Returns an estimate of the size of this collection or iterator. The idea is that this information
         * can be used internally to make better default dimensions for temporary objects. Therefore, it is
         * intended to return a value which is greater or equal to the real size (pessimistic). The typical use
         * case is creating a hash set or hash map of a collection without knowing the number of elements it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 18 08:11:23 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized_drq.mlir

    //
    // Internal functions should be marked as private. They will be inlined and
    // deleted in `InsertQuantizedFunctionsPass`.
    //
    // For Uniform Quantized op case, attributes are generated during quantize
    // composite pass. Therefore, attr_map is set to an empty string.
    
    module {
    
      // Currently only 4-d case is supported
      func.func @quantized_conv2d_fn(
                             %input : tensor<*xf32>, %weight : tensor<*x!tf_type.qint8>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 01 12:06:54 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingObject.java

     * object being tested for equality to the custom interface. {@code ForwardingObject} implements no
     * such custom interfaces directly; they are implemented only in subclasses. Therefore, forwarding
     * {@code equals} would break symmetry, as the forwarding object might consider itself equal to the
     * object being tested, but the reverse could not be true. This behavior is consistent with the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top