Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,217 for inform (0.09 sec)

  1. pkg/controller/cronjob/utils.go

    	// all the missed start times.
    	//
    	// I've somewhat arbitrarily picked 100, as more than 80,
    	// but less than "lots".
    	switch {
    	case numberOfMissedSchedules > 100:
    		missedSchedules = manyMissed
    	// inform about few missed, still
    	case numberOfMissedSchedules > 0:
    		missedSchedules = fewMissed
    	}
    
    	if mostRecentTime.IsZero() {
    		return earliestTime, nil, missedSchedules, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute.go

    			canDoMinorUpgrade = minorUpgradePossibleWithPatchRelease(stableVersion, patchVersion)
    
    			// If the cluster version is lower than the newest patch version, we should inform about the possible upgrade
    			if patchUpgradePossible(clusterVersion, patchVersion) {
    
    				// The kubeadm version has to be upgraded to the latest patch version
    				newKubeadmVer := patchVersionStr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      //
      // +listType=atomic
      // +optional
      repeated ResourceHandle resourceHandles = 1;
    
      // This field will get set by the resource driver after it has allocated
      // the resource to inform the scheduler where it can schedule Pods using
      // the ResourceClaim.
      //
      // Setting this field is optional. If null, the resource is available
      // everywhere.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    [[sec:idea_identify_additional_source_sets]]
    == Identifying additional test directories
    
    When using this plugin together with the <<java_plugin.adoc#java_plugin,Java plugin>>, after adding additional source sets you may wish to inform IDEA when they contain test source rather than production source, so that the IDE can treat the directories appropriately.  This can be accomplished by using this plugin's `Module` block.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

            break;
          }
          replicate_args.push_back(replicate_operand);
        }
        if (replicate_args.empty()) continue;
        // Now set the enable_xla_sharding field in the metadata to inform the
        // compile op.
        auto metadata_arg = metadata.mutable_args(it->second);
        metadata_arg->set_enable_xla_sharding(
            ::tensorflow::tpu::TPUCompileMetadataProto_Arg::ALLOWED);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction.go

    	if dryRun {
    		return nil
    	}
    
    	if pdb.Status.DisruptedPods == nil {
    		pdb.Status.DisruptedPods = make(map[string]metav1.Time)
    	}
    
    	// Eviction handler needs to inform the PDB controller that it is about to delete a pod
    	// so it should not consider it as available in calculations when updating PodDisruptions allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		ctx, cancel = context.WithTimeout(ctx, time.Duration(*h.TimeoutSeconds)*time.Second)
    		defer cancel()
    	}
    
    	r := client.Post().Body(request)
    
    	// if the context has a deadline, set it as a parameter to inform the backend
    	if deadline, hasDeadline := ctx.Deadline(); hasDeadline {
    		// compute the timeout
    		if timeout := time.Until(deadline); timeout > 0 {
    			// if it's not an even number of seconds, round up to the nearest second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/runtime/race.go

    	var n uint64
    	racecall(&__tsan_report_count, uintptr(unsafe.Pointer(&n)), 0, 0, 0)
    	return int(n)
    }
    
    // RaceAcquire/RaceRelease/RaceReleaseMerge establish happens-before relations
    // between goroutines. These inform the race detector about actual synchronization
    // that it can't see for some reason (e.g. synchronization within RaceDisable/RaceEnable
    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    For this, a project adds an additional `MavenPublication` specifying a link:{groovyDslPath}/org.gradle.api.publish.maven.MavenPomRelocation.html[MavenPomRelocation]:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"availableOnNodes": "This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaim.\n\nSetting this field is optional. If null, the resource is available everywhere.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top