Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 5,637 for need (0.07 sec)

  1. 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.
    	if !(cpu.S390X.HasAES && cpu.S390X.HasAESCBC && cpu.S390X.HasAESCTR && (cpu.S390X.HasGHASH || cpu.S390X.HasAESGCM)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // Convenience function for writing string `data` to file without the need to
    // pass `tsl::Env` instance. Internally it uses the default `tsl::Env::Default`.
    absl::Status WriteStringToFile(absl::string_view file_path,
                                   absl::string_view data);
    
    // Convenience function for reading string data from file at `file_path` without
    // the need to pass `tsl::Env` instance. Internally it uses the default
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/flagalloc.go

    		}
    	}
    
    	// Compute which flags values will need to be spilled.
    	spill := map[ID]bool{}
    	for _, b := range f.Blocks {
    		var flag *Value
    		if len(b.Preds) > 0 {
    			flag = end[b.Preds[0].b.ID]
    		}
    		for _, v := range b.Values {
    			for _, a := range v.Args {
    				if !a.Type.IsFlags() {
    					continue
    				}
    				if a == flag {
    					continue
    				}
    				// a will need to be restored here.
    				spill[a.ID] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. src/runtime/iface.go

    	oldEntries := unsafe.Slice(&oldC.Entries[0], oldC.Mask+1)
    
    	// Count the number of entries we need.
    	n := 1
    	for _, e := range oldEntries {
    		if e.Typ != 0 {
    			n++
    		}
    	}
    
    	// Figure out how big a table we need.
    	// We need at least one more slot than the number of entries
    	// so that we are guaranteed an empty slot (for termination).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    		// If EnableHeadlessService is true and svc ports are not pure HTTP, we need to regenerate listeners per endpoint.
    		// Otherwise we only need to push NDS, but still need to set full but we skip all other xDS except NDS during the push.
    		esc.c.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{
    			Full:           true,
    			ConfigsUpdated: configsUpdated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		return effectivePeerAuthenticationKeys(rootNamespace, isEffectiveStrictPolicy, "")
    	}
    
    	workloadSpec := &workloadCfg.Spec
    
    	// Regardless of if we have port-level overrides, if the workload policy is STRICT, then we need to reference our static STRICT policy
    	if isMtlsModeStrict(workloadSpec.Mtls) {
    		isEffectiveStrictPolicy = true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

        }
    
        /**
         * Returns the types that need to be reprocessed based on which classes are due to be recompiled. This includes:
         *
         * - types which are annotated with aggregating annotations, as aggregating processors need to see them regardless of what has changed
         * - the originating types of generated classes that need to be recompiled, since they wouldn't exist if the originating type is not reprocessed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    		// We have no good way to distinguish between these two cases from here. But we don't need to!
    		// Existing pods will be handled by the dataplane using `GetAmbientPods`,
    		// and the initial enqueueNamespace, and new pods will be handled by the CNI.
    
    	case controllers.EventUpdate:
    		// For update, we just need to handle opt outs
    		newPod := event.New.(*corev1.Pod)
    		oldPod := event.Old.(*corev1.Pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/GroovyRecompilationSpecProvider.java

        ) {
            super(deleter, fileOperations, sources, sourceChanges, incremental);
        }
    
        /**
         * For all classes with Java source that we will be recompiled due to some change, we need to recompile all subclasses.
         * This is because Groovy might try to load some subclass when analysing Groovy classes before Java compilation, but if parent class was stale,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/dialect_registration.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/core/ir/ops.h"
    
    namespace mlir {
    // Inserts all the TensorFlow dialects in the provided registry. This is
    // intended for tools that need to register dialects before parsing .mlir files.
    // If include_extensions is set (default), also registers extensions. Otherwise
    // it is the responsibility of the caller, typically required when the registry
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 16:15:16 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top