Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for xoring (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// * Prevent starvation of watch opened by cacher, by moving it to separate Watch RPC than watch request that bypass cacher.
    		// * Ensure that progress notification requests are executed on the same Watch RPC as their watch, which is required for it to work.
    		contextMetadata = metadata.New(map[string]string{"source": "cache"})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    func newPodNominator(podLister listersv1.PodLister) *nominator {
    	return &nominator{
    		podLister:          podLister,
    		nominatedPods:      make(map[string][]*framework.PodInfo),
    		nominatedPodToNode: make(map[types.UID]string),
    	}
    }
    
    func podInfoKeyFunc(obj interface{}) (string, error) {
    	return cache.MetaNamespaceKeyFunc(obj.(*framework.QueuedPodInfo).Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. cmd/erasure-multipart.go

    			crc := expPart.Checksums[checksumType.String()]
    			if crc == "" {
    				return oi, InvalidPart{
    					PartNumber: part.PartNumber,
    				}
    			}
    			wantCS := map[string]string{
    				hash.ChecksumCRC32.String():  part.ChecksumCRC32,
    				hash.ChecksumCRC32C.String(): part.ChecksumCRC32C,
    				hash.ChecksumSHA1.String():   part.ChecksumSHA1,
    				hash.ChecksumSHA256.String(): part.ChecksumSHA256,
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    	Namespace        string
    	Authenticators   []security.Authenticator
    	CertSignerDomain string
    }
    
    // Based on istio_ca main - removing creation of Secrets with private keys in all namespaces and install complexity.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. .bazelrc

    #     avx_win:                Build with avx instruction set on windows
    #
    # Other build options:
    #     short_logs:       Only log errors during build, skip warnings.
    #     verbose_logs:     Show all compiler warnings during build.
    #     monolithic:       Build all TF C++ code into a single shared object.
    #     dynamic_kernels:  Try to link all kernels dynamically (experimental).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    
    internal
    enum class StateType(val encryptable: Boolean = false) {
        /**
         * Contains the state for the entire build.
         */
        Work(true),
    
        /**
         * Contains the side effects observed during the creation of the [Model].
         */
        ModelSideEffects(true),
    
        /**
         * Contains the model objects sent back to the IDE in response to a TAPI request.
         */
        Model(true),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            protected final List<String> executedTasks;
            protected final Set<String> skippedTasks;
            private final ExecutionResult outputResult;
    
            InProcessExecutionResult(List<String> executedTasks, Set<String> skippedTasks, ExecutionResult outputResult) {
                this.executedTasks = executedTasks;
                this.skippedTasks = skippedTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            }
        }
    
        void outputContains(String string) {
            assertHasResult()
            result.assertOutputContains(string.trim())
        }
    
        void postBuildOutputContains(String string) {
            assertHasResult()
            result.assertHasPostBuildOutput(string.trim())
        }
    
        void postBuildOutputDoesNotContain(String string) {
            assertHasResult()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. docs/en/data/external_links.yml

    nahme-eines-scikit-learn-modells-mit-onnx-und-fastapi/ title: Inbetriebnahme eines scikit-learn-Modells mit ONNX und FastAPI - author: Felix Schürmeyer author_link: https://hellocoding.de/autor/felix-schuermeyer/ link: https://hellocoding.de/blog/coding-language/python/fastapi title: REST-API Programmieren mittels Python und dem FastAPI Modul Japanese: - author: '@bee2' author_link: https://qiita.com/bee2 link: https://qiita.com/bee2/items/75d9c0d7ba20e7a4a0e9 title: '[FastAPI] Python製のASGI Web フレームワーク...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSFORMS_PASSES_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSFORMS_PASSES_H_
    
    #include <cstdint>
    #include <memory>
    #include <string>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/Support/CommandLine.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top