Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,702 for completely (0.15 sec)

  1. src/runtime/metrics/description.go

    		Cumulative: true,
    	},
    	{
    		Name:        "/gc/cycles/automatic:gc-cycles",
    		Description: "Count of completed GC cycles generated by the Go runtime.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/cycles/forced:gc-cycles",
    		Description: "Count of completed GC cycles forced by the application.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    	}
    
    	// SetConstraint can't be called if the constraint type is not yet complete.
    	// When type params are created in the 'P' case of (*importReader).obj(),
    	// the associated constraint type may not be complete due to recursion.
    	// Therefore, we defer calling SetConstraint there, and call it here instead
    	// after all types are complete.
    	for _, d := range p.later {
    		d.t.SetConstraint(d.constraint)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    // An error satisfying errors.Is(err, fs.ErrNotExist) will be returned
    // along with the directory if the directory does not exist or if the directory
    // is not completely populated.
    func DownloadDir(ctx context.Context, m module.Version) (string, error) {
    	if gover.IsToolchain(m.Path) {
    		return "", ErrToolchain
    	}
    	if err := checkCacheDir(ctx); err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

                            parentsOfDeletedDistributions.add(checksumDir.getParentFile());
                        } else {
                            LOGGER.info("Distribution for {} at {} was not completely deleted.", version, checksumDir);
                        }
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnector.java

     * new instance for each thread using {@link #newConnector()}. Note, however, the {@link ProjectConnection} instances that a connector creates are completely thread-safe.</p>
     *
     * <h2>Gradle version compatibility</h2>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                        return ((DefaultModuleComponentArtifactIdentifier) artifactIdentifier).getName();
                    }
                    // This is a bit hackish but the mapping from file names to ivy artifact names is completely broken
                    String fileName = artifactIdentifier.getFileName().replace("-" + artifactIdentifier.getComponentIdentifier().getVersion(), "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/controller/ttl/ttl_controller.go

    // send "watch secrets attached to pods from my node" request. Once
    // sending such request will be possible, we will modify Kubelet to
    // use it and get rid of this controller completely.
    
    package ttl
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"strconv"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util.cc

            IsCompilableCall(call, lib_runtime, stack_trace, encapsulating_function,
                             uncompilable_nodes);
      }
      return is_compilable;
    }
    
    // Tests whether 'while_node' is a completely compilable loop.
    // Every operator in the condition and body functions must be compilable for a
    // while loop to be compilable.
    bool RecursiveCompilabilityChecker::IsCompilableWhile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    A typical use case for this is when developers start their day, pull all changes from version control and then run their first build.
    
    The changes don't need to be completely independent, either; we'll take a look at the strategies to reuse results when dependencies are involved in the section about the <<build_cache_concepts.adoc#normalization,different forms of normalization>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. src/encoding/ascii85/ascii85.go

    // Decode expects these to have been stripped by the caller.
    //
    // If flush is true, Decode assumes that src represents the
    // end of the input stream and processes it completely rather
    // than wait for the completion of another 32-bit block.
    //
    // [NewDecoder] wraps an [io.Reader] interface around Decode.
    func Decode(dst, src []byte, flush bool) (ndst, nsrc int, err error) {
    	var v uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top