Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 584 for tracking (0.66 sec)

  1. src/cmd/trace/pprof.go

    			// Check if we're tracking this goroutine.
    			startEv := tracking[id]
    			if startEv == nil {
    				// We're not. Start tracking if the new state
    				// matches what we want and the transition is
    				// for one of the reasons we care about.
    				if new == state && trackReason(st.Reason) {
    					tracking[id] = ev
    				}
    				continue
    			}
    			// We're tracking this goroutine.
    			if new == state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                        }
                    }
    
                    if (channel != null) {
                        try {
                            channel.close();
                        } catch (IOException e) {
                            getLogger().debug("Error closing FileChannel for resolution tracking file: " + touchfile, e);
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                        dir, event.getSession().getLocalRepositoryManager().getPathForLocalArtifact(event.getArtifact()));
                trackingDir = dir.getParentFile().toPath().resolve(".tracking");
            } else {
                trackingDir = event.getFile().getParentFile().toPath().resolve(".tracking");
            }
    
            String baseName;
            String ext = missing ? ".miss" : ".dep";
            Path trackingFile = null;
    
            String indent = "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    ====
    include::sample[dir="snippets/buildCache/java-version-tracking/kotlin",files="build.gradle.kts[tags=trackVendor]"]
    include::sample[dir="snippets/buildCache/java-version-tracking/groovy",files="build.gradle[tags=trackVendor]"]
    ====
    
    With respect to tracking the Java minor version there are different competing aspects: developers having cache hits and "perfect" results on CI.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. 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)
  6. samples/bookinfo/src/productpage/templates/productpage.html

            <h2 class="mt-5 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to BookInfo</h2>
        </div>
        <div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/stackcheck.go

    	if buildcfg.GOARCH == "arm64" {
    		// Need an extra 8 bytes below SP to save FP.
    		limit -= 8
    	}
    
    	// Compute stack heights without any back-tracking information.
    	// This will almost certainly succeed and we can simply
    	// return. If it fails, we do a second pass with back-tracking
    	// to produce a good error message.
    	//
    	// This accumulates stack heights bottom-up so it only has to
    	// visit every function once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return {@code true} if location tracking is enabled, {@code false} otherwise.
         */
        boolean isLocationTracking();
    
        /**
         * Enables/disables the tracking of line/column numbers for the model source being parsed. By default, input
         * locations are not tracked.
         *
         * @param locationTracking {@code true} to enable location tracking, {@code false} to disable it.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. istioctl/pkg/wait/wait.go

    	if count, ok := versionCount[configVersion]; ok {
    		versionCount[configVersion] = count + 1
    	} else {
    		versionCount[configVersion] = 1
    	}
    }
    
    const distributionTrackingDisabledErrorString = "pilot version tracking is disabled " +
    	"(To enable this feature, please set PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true)"
    
    func poll(ctx cli.Context,
    	cmd *cobra.Command,
    	acceptedVersions []string,
    	targetResource string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  10. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // which returns a dict of string key -> EITHER:
    // 1. python callable (taking a checkpoint key) returning SaveableObject OR
    // 2. variable (partitioned/resource/reference or otherwise)
    // https://github.com/tensorflow/tensorflow/blob/ddc1bbad3dfd4a089eb96014f26cc16664b1b2f8/tensorflow/python/training/saving/saveable_object.py#L58.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top