Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for checkIn (0.11 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    		// already existing log.
    		//
    		// We are checking to see if the log directory exists, and find
    		// the latest restartCount by checking the log name -
    		// {restartCount}.log - and adding 1 to it.
    		logDir := BuildContainerLogsDirectory(m.podLogsDirectory, pod.Namespace, pod.Name, pod.UID, container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/time/format.go

    // corresponding to Jan 1, year 0, 15:04:00 UTC (note that because the year is
    // 0, this time is before the zero Time).
    // Years must be in the range 0000..9999. The day of the week is checked
    // for syntax but it is otherwise ignored.
    //
    // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated
    // as 19NN and a value NN < 69 will be treated as 20NN.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    			"It probably contains stale files that may confuse the build.\n"+
    			"Please (check what's there and) remove it and try again.\n"+
    			"See https://golang.org/s/go14nopkg\n",
    			pathf("%s/src/pkg", goroot))
    	}
    
    	if rebuildall {
    		clean()
    	}
    
    	setup()
    
    	timelog("build", "toolchain1")
    	checkCC()
    	bootstrapBuildTools()
    
    	// Remember old content of $GOROOT/bin for comparison below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

        if (should_revisit[n->id()]) {
          VLOG(4) << "Revisiting " << n->name();
          TF_RETURN_IF_ERROR(HandleNode(n, &should_revisit));
        }
      }
    
      // Check if the optimistic analysis converges.  Specifically, check whether
      // all the predicates of the merge nodes in the same frame are the same.  If
      // yes, report success.  If not, report failure and clear the assigned
      // predicates.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Preconditions.java

          throw new IllegalStateException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    // and determines the scheduling hint for this Pod while checking the events that happened during in-flight.
    func (p *PriorityQueue) determineSchedulingHintForInFlightPod(logger klog.Logger, pInfo *framework.QueuedPodInfo) queueingStrategy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

            $custom_plugin_monitors = @()
    
            # Custom Plugin Monitors
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubelet.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubeproxy.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-defender-monitor.json")
    
            # System Stats Monitors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.CopyOnWriteArraySet;
    import java.util.stream.Collector;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Set} instances. Also see this class's counterparts
     * {@link Lists}, {@link Maps} and {@link Queues}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If they do, verify that the signature that Gradle downloaded matches the one published.
    
    If you have <<#sec:manual-checking-dependency,checked that the dependency is _not_ compromised>> and that it's "only" the signature which is wrong, you should declare an _artifact level key exclusion_:
    
    [source,xml]
    ----
       <components>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// ShouldDeleteDuringUpdate is an optional function to determine whether
    	// an update from existing to obj should result in a delete.
    	// If specified, this is checked in addition to standard finalizer,
    	// deletionTimestamp, and deletionGracePeriodSeconds checks.
    	ShouldDeleteDuringUpdate func(ctx context.Context, key string, obj, existing runtime.Object) bool
    
    	// TableConvertor is an optional interface for transforming items or lists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top