Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,650 for tracking (0.24 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      // https://github.com/tensorflow/tensorflow/blob/f19c6efb4a8ba60e2492eedc98ef5375abb39dc7/tensorflow/python/training/tracking/tracking.py#L233
      // For now, we assert that all create_resource functions must have no
      // captures. This aligns with the current behavior in python.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. src/cmd/gofmt/simplify.go

    		//       has never come up, so let's keep it working as is (see also #15153).
    		//
    		// Also note that this code used to use go/ast's object tracking,
    		// which was removed in exchange for go/parser.Mode.SkipObjectResolution.
    		// False positives are extremely unlikely as described above,
    		// and go/ast's object tracking is incomplete in any case.
    		if n.Max != nil {
    			// - 3-index slices always require the 2nd and 3rd index
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Count.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    
    /**
     * A mutable value of type {@code int}, for multisets to use in tracking counts of values.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Count implements Serializable {
      private int value;
    
      Count(int value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/state/state.go

    	SetDefaultCPUSet(cpuset cpuset.CPUSet)
    	SetCPUAssignments(ContainerCPUAssignments)
    	Delete(podUID string, containerName string)
    	ClearState()
    }
    
    // State interface provides methods for tracking and setting cpu/pod assignment
    type State interface {
    	Reader
    	writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/options.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    import (
    	"strconv"
    	"strings"
    )
    
    // UnknownFieldPathOptions allow for tracking paths to unknown fields.
    type UnknownFieldPathOptions struct {
    	// TrackUnknownFieldPaths determines whether or not unknown field
    	// paths should be stored or not.
    	TrackUnknownFieldPaths bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

     * added to the task graph.  For example "clean build" on the command line implies that the user wants
     * to run the clean tasks of each project before the build tasks of each project.  Ordinal nodes ensure
     * this order by tracking the dependencies of destroyers and producers in each group of tasks added to
     * the task graph and prevents producers of a higher ordinality to run before the destroyers of a lower
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
        private static final String IGNORE_FS_CHECKS_PROPERTY = StartParameterBuildOptions.ConfigurationCacheIgnoredFileSystemCheckInputs.PROPERTY_NAME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchyRoot.java

    package org.gradle.internal.vfs.impl;
    
    import org.gradle.internal.snapshot.CaseSensitivity;
    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.CheckReturnValue;
    
    /**
     * Structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchyRoot {
        private final CaseSensitivity caseSensitivity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/topology_manager.go

    	// wants to be consulted with when making topology hints
    	AddHintProvider(HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    	// Store is the interface for storing pod topology hints
    	Store
    }
    
    type manager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. apache-maven/README.txt

      Release Notes:      https://maven.apache.org/docs/history.html
      Mailing Lists:      https://maven.apache.org/mailing-lists.html
      Source Code:        https://gitbox.apache.org/repos/asf/maven.git
      Issue Tracking:     https://issues.apache.org/jira/browse/MNG
      Wiki:               https://cwiki.apache.org/confluence/display/MAVEN/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 13 20:21:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top