Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 486 for tracking (0.18 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/trace/gc.go

    	// mutator utilization above this bound cannot affect the
    	// accumulated statistics.
    	bound float64
    
    	// Worst N window tracking
    	nWorst int
    	wHeap  utilHeap
    
    	// Mutator utilization distribution tracking
    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    	con.ids = ids
    	con.s = s
    	return xds.Stream(con)
    }
    
    // update the node associated with the connection, after receiving a packet from envoy, also adds the connection
    // to the tracking map.
    func (s *DiscoveryServer) initConnection(node *core.Node, con *Connection, identities []string) error {
    	// Setup the initial proxy metadata
    	proxy, err := s.initProxyMetadata(node)
    	if err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    	return func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    		// For performance tracking purposes.
    		ctx, span := tracing.Start(ctx, "List", traceFields(req)...)
    
    		namespace, err := scope.Namer.Namespace(req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top