Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for pcount (0.17 sec)

  1. cmd/iam-object-store.go

    			return fmt.Errorf("unable to load the service account `%s`: %w", userName, err)
    		}
    	}
    	for _, svcAcc := range svcUsersMap {
    		svcParent := svcAcc.Credentials.ParentUser
    		if _, ok := cache.iamUsersMap[svcParent]; !ok {
    			// If a service account's parent user is not in iamUsersMap, the
    			// parent is an STS account. Such accounts may have a policy mapped
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	mounts := []kubecontainer.Mount{}
    	var cleanupAction func()
    	for i, mount := range container.VolumeMounts {
    		// do not mount /etc/hosts if container is already mounting on the path
    		mountEtcHostsFile = mountEtcHostsFile && (mount.MountPath != etcHostsPath)
    		vol, ok := podVolumes[mount.Name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                task ok(type: SomeTask) {
                    bean.value = "child"
                }
            """
    
            when:
            configurationCacheRun "ok"
    
            then:
            result.output.count("creating bean") == 2
    
            when:
            configurationCacheRun "ok"
    
            then:
            outputDoesNotContain("creating bean")
            outputContains("bean.value = child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			OriginalReference: r.OriginalReference,
    			DeniedReason:      r.DeniedReason,
    			RouteError:        gwResult.error,
    		}
    		if r.IsMesh() {
    			res.RouteError = meshResult.error
    		}
    		return res
    	}))
    	count := 0
    	for _, parent := range filteredReferences(parentRefs) {
    		// for gateway routes, build one VS per gateway+host
    		routeMap := gatewayRoutes
    		routeKey := parent.InternalName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/runtime/coro.go

    		// Detach the goroutine from the thread; we'll attach to the goroutine we're
    		// switching to before returning.
    		gp.lockedm.set(nil)
    	}
    
    	if exit {
    		// The M might have a non-zero OS thread lock count when we get here, gdestroy
    		// will avoid destroying the M if the G isn't explicitly locked to it via lockedm,
    		// which we cleared above. It's fine to gdestroy here also, even when locked to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    
    	s, ok := c.(*preScoreState)
    	if !ok {
    		return nil, fmt.Errorf("%+v convert to tainttoleration.preScoreState error", c)
    	}
    	return s, nil
    }
    
    // CountIntolerableTaintsPreferNoSchedule gives the count of intolerable taints of a pod with effect PreferNoSchedule
    func countIntolerableTaintsPreferNoSchedule(taints []v1.Taint, tolerations []v1.Toleration) (intolerableTaints int) {
    	for _, taint := range taints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    bool Translator::EstimateArithmeticCount(int64_t* count) {
      int64_t result = 0;
      bool encounter_undetermined_mac = false;
      module_->walk([&](mlir::TFL::TflArithmeticCountOpInterface op) {
        int64_t mac_count = op.GetArithmeticCount(op);
        if (mac_count < 0) {
          encounter_undetermined_mac = true;
          return;
        }
        result += mac_count;
      });
    
      *count = result;
      return !encounter_undetermined_mac;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// recorded into the audit log for future requests made by these tokens.
    	ServiceAccountTokenJTI featuregate.Feature = "ServiceAccountTokenJTI"
    
    	// owner: @munnerz
    	// kep: http://kep.k8s.io/4193
    	// alpha: v1.29
    	// beta: v1.31
    	//
    	// Controls whether the apiserver supports binding service account tokens to Node objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        llvm::SmallVectorImpl<Type> *updated_types) {
      int i = 0;
      for (const auto it : llvm::zip(types, range, operands)) {
        if (tensor_list_index.count(i)) {
          // Only change the tensorlist's type to unranked tensor if it has been
          // resized.
          if (resized_tensor_list_index.count(i)) {
            updated_types->push_back(
                VariantToUnrankedTensorType(std::get<0>(it), std::get<1>(it)));
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    func (st *relocSymState) relocsym(s loader.Sym, P []byte) {
    	ldr := st.ldr
    	relocs := ldr.Relocs(s)
    	if relocs.Count() == 0 {
    		return
    	}
    	target := st.target
    	syms := st.syms
    	nExtReloc := 0 // number of external relocations
    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    		off := r.Off()
    		siz := int32(r.Siz())
    		rs := r.Sym()
    		rt := r.Type()
    		weak := r.Weak()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top