Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for InfoS (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		// it should be logically impossible for the new state to be invalid but check just in case
    		_, errGen = h.getCurrentState()
    		if errGen == nil {
    			klogV6 := klog.V(6)
    			if klogV6.Enabled() {
    				klogV6.InfoS("successfully rotated DEK",
    					"uid", uid,
    					"useSeed", useSeed,
    					"newKeyIDHash", envelopekmsv2.GetHashIfNotEmpty(encObject.KeyID),
    					"oldKeyIDHash", envelopekmsv2.GetHashIfNotEmpty(state.EncryptedObject.KeyID),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir.go

    		if ed.medium == v1.StorageMediumMemory && !notMnt {
    			return nil
    		} else if ed.medium == v1.StorageMediumDefault {
    			// Further check dir exists
    			if _, err := os.Stat(dir); err == nil {
    				klog.V(6).InfoS("Dir exists, so check and assign quota if the underlying medium supports quotas", "dir", dir)
    				err = ed.assignQuota(dir, mounterArgs.DesiredSize)
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

    // resource access.
    bool IsResourceSafeForMerge(
        Value resource,
        const mlir::TF::ResourceAliasAnalysis::Info& resource_analysis_info,
        const VariableAccessesForTPUExecute& infos,
        const llvm::SmallDenseSet<int64_t>& resource_ids,
        bool previous_unknown_resource_access) {
      // If we had any unknown resource access before, then we conservatively assume
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. pkg/volume/local/local.go

    		return true, nil
    	case hostutil.FileTypeDirectory:
    		// if the given local volume path is of already filesystem directory, return directly because
    		// we do not want to prevent mount operation from succeeding.
    		klog.InfoS("Expansion of directory based local volumes is NO-OP", "localVolumePath", localDevicePath)
    		return true, nil
    	default:
    		return false, fmt.Errorf("only directory and block device are supported")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		} else {
    			concurrencyDenominator = int(math.Max(1, math.Round(float64(cfgCtlr.serverConcurrencyLimit)/10)))
    		}
    		plState.seatDemandRatioedGauge.SetDenominator(float64(concurrencyDenominator))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication.go

    					// we do not update the tracker here because this error could eventually resolve as we keep retrying
    					return
    				}
    
    				trackedAuthenticationConfigData = authConfigData
    				klog.InfoS("reloaded authentication config")
    				authenticationconfigmetrics.RecordAuthenticationConfigAutomaticReloadSuccess(apiServerID)
    			},
    			func(err error) { klog.ErrorS(err, "watching authentication config file") },
    		)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.failure_url_error_name	=	Type
    labels.failure_url_error_log	=	Log
    labels.failure_url_web_config_name	=	Configuration du réseau
    labels.failure_url_file_config_name	=	Configuration du fichier
    labels.system_info_configuration	=	Infos système
    labels.system_info_env_title	=	Propriétés d'environment
    labels.system_info_prop_title	=	Propriétés du système
    labels.system_info_fess_prop_title	=	Propriétés de FESS
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one.go

    	defer trace.LogIfLong(100 * time.Millisecond)
    	if err := sched.Cache.UpdateSnapshot(klog.FromContext(ctx), sched.nodeInfoSnapshot); err != nil {
    		return result, err
    	}
    	trace.Step("Snapshotting scheduler cache and node infos done")
    
    	if sched.nodeInfoSnapshot.NumNodes() == 0 {
    		return result, ErrNoNodesAvailable
    	}
    
    	feasibleNodes, diagnosis, err := sched.findNodesThatFitPod(ctx, fwk, state, pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top