Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 429 for Shardz (0.41 sec)

  1. src/internal/coverage/rtcov/rtcov.go

    // meta-data blob of length 'dlen' for the package in question, 'hash'
    // is a compiler-computed md5.sum for the blob, 'pkpath' is the
    // package path, 'pkid' is the hard-coded ID that the compiler is
    // using for the package (or -1 if the compiler doesn't think a
    // hard-coded ID is needed), and 'cmode'/'cgran' are the coverage
    // counter mode and granularity requested by the user. Return value is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/os_freebsd_arm.go

    		print("a binary compiled for hard floating point. Recompile adding ,softfloat\n")
    		print("to GOARM.\n")
    		exit(1)
    	}
    	if goarm > 6 && cpu.HWCap&_HWCAP_VFPv3 == 0 && goarmsoftfp == 0 {
    		print("runtime: this CPU has no VFPv3 floating point hardware, so it cannot run\n")
    		print("a binary compiled for VFPv3 hard floating point. Recompile adding ,softfloat\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/os_linux_arm.go

    		print("a binary compiled for hard floating point. Recompile adding ,softfloat\n")
    		print("to GOARM.\n")
    		exit(1)
    	}
    	if goarm > 6 && cpu.HWCap&_HWCAP_VFPv3 == 0 && goarmsoftfp == 0 {
    		print("runtime: this CPU has no VFPv3 floating point hardware, so it cannot run\n")
    		print("a binary compiled for VFPv3 hard floating point. Recompile adding ,softfloat\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    	resourceQuota := &corev1.ResourceQuota{}
    	resourceQuota.Name = "quota"
    	resourceQuota.Namespace = "test"
    	resourceQuota.Status = corev1.ResourceQuotaStatus{
    		Hard: corev1.ResourceList{},
    		Used: corev1.ResourceList{},
    	}
    	resourceQuota.Status.Hard[corev1.ResourceMemory] = resource.MustParse("2Gi")
    	resourceQuota.Status.Used[corev1.ResourceMemory] = resource.MustParse("1Gi")
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/syscall/rlimit.go

    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    		// Re-build the endpoints for this service with a new discoverability policy.
    		// Also update any internal caching.
    		endpoints := ec.buildEndpointsForService(svc, true)
    		shard := model.ShardKeyFromRegistry(ec)
    		ec.opts.XDSUpdater.EDSUpdate(shard, svc.Hostname.String(), se.GetNamespace(), endpoints)
    	}
    }
    
    func (ec *serviceExportCacheImpl) EndpointDiscoverabilityPolicy(svc *model.Service) model.EndpointDiscoverabilityPolicy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.h

    // Returns "/tensorflow/core/checkpoint/sharding/num_checkpoint_shards_written"
    // cell which describes how many checkpoint shard files were written during
    // saving.
    monitoring::CounterCell& NumCheckpointShardsWritten();
    
    // Returns "/tensorflow/core/checkpoint/sharding/callback_description" cell
    // which describes the callback used to shard the checkpoint during saving.
    monitoring::GaugeCell<std::string>& ShardingCallbackDescription();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/resourcequota.yaml

    {{- if .Values.cni.resourceQuotas.enabled }}
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		// First get endpoint level service accounts
    		shard, f := env.EndpointIndex.ShardsForService(string(svc.Hostname), svc.Attributes.Namespace)
    		if f {
    			shard.RLock()
    			// copy here to reduce the lock time
    			// endpoints could update frequently, so the longer it locks, the more likely it will block other threads.
    			accounts = shard.ServiceAccounts.Copy()
    			shard.RUnlock()
    		}
    		if len(svc.ServiceAccounts) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

                        setDirectory(workingDir).
                        setCloneSubmodules(true);
                git = clone.call();
                git.reset().setMode(ResetCommand.ResetType.HARD).setRef(ref.getCanonicalId()).call();
            } catch (GitAPIException | URISyntaxException | JGitInternalException e) {
                throw wrapGitCommandException("clone", gitSpec.getUrl(), workingDir, e);
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top