Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for gretty (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                            project.getDependencies().registerTransform(FileSizeTransform.class, spec -> {
                                spec.getFrom().attribute(ARTIFACT_TYPE_ATTRIBUTE, JAR_TYPE);
                                spec.getTo().attribute(ARTIFACT_TYPE_ATTRIBUTE, TXT_TYPE);
                            });
                        }
    
                        private Configuration createBaseConfiguration(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    TIP: To permanently enable verbose mode, add `org.gradle.console=verbose` to your `gradle.properties` file.
    
    == Build caching
    
    Incremental Builds are a great optimization that helps avoid work already done.
    If a developer continuously changes a single file, there is likely no need to rebuild all the other files in the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    	// The maximum number of bytes required to hold the encoded stack, given that
    	// it contains N frames.
    	maxBytes := 1 + (2+4*len(frames))*traceBytesPerNumber
    
    	// Estimate the size of this record. This
    	// bound is pretty loose, but avoids counting
    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write traceEvStacks.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    		w.byte(byte(traceEvStacks))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/runtime.go

    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

        private void initCalculatedValues() {
            // TODO: We wrap the CalculatedValues in an AtomicReference so that we can reset their state, however
            //       CalculatedValues are not resettable for a reason. This is a pretty terrible hack.
            //       We should get rid of reevaluate entirely, so that we do not need these AtomicReferences.
            //       We are already on this path -- we deprecated mutating a configuration after observation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

    // for the name.  Note that the rewriting strategy is roughly O(N*M), where N is
    // the size of the code and M is the number of rewrites.  It's fine for now
    // since N and M are pretty small.
    //
    // TODO(toddw): If this becomes a problem, we should be able to change the
    // algorithm to O(N) by using a state machine, e.g. regexps or a real
    // text-templating mechanism.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    The files are rebuilt, even though the developer is building something that has been built before.
    
    This is where a Build Cache is helpful. The cache stores previous build results, and greatly reduces the need to rebuild things when they have already been built locally.
    
    Let's start by turning on the local Build Cache for your app.
    
    == Step 2. Enabling the Local Build Cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen_test_h.golden

        proto->ParseFromArray(&__tfcompile_foo_bar_MyClass_ProgramShapeProto_protobuf_array_contents[0], 157);
        return proto;
      }();
        return kShape;
      }
    
      // Metadata that can be used to pretty-print profile counters.
      static const ::xla::HloProfilePrinterData* StaticHloProfilePrinterData() {
        static const ::xla::HloProfilePrinterData* kHloProfilePrinterData =
          nullptr;
        return kHloProfilePrinterData;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. go.mod

    	github.com/hashicorp/go-multierror v1.1.1
    	github.com/hashicorp/go-version v1.7.0
    	github.com/hashicorp/golang-lru/v2 v2.0.7
    	github.com/howardjohn/unshare-go v0.4.0
    	github.com/kr/pretty v0.3.1
    	github.com/kylelemons/godebug v1.1.0
    	github.com/lestrrat-go/jwx v1.2.29
    	github.com/mattn/go-isatty v0.0.20
    	github.com/miekg/dns v1.1.59
    	github.com/mitchellh/copystructure v1.2.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    		return err.Error()
    	}
    	return string(y)
    }
    
    func toJSON(v interface{}) ([]byte, error) {
    	j, err := json.Marshal(v)
    	if err != nil {
    		return nil, fmt.Errorf("json marshal failed: %v\n%v\n", err, dump.Pretty(v))
    	}
    	return j, nil
    }
    
    func jsonToYAML(j []byte) ([]byte, error) {
    	y, err := yaml.JSONToYAML(j)
    	if err != nil {
    		return nil, fmt.Errorf("json to yaml failed: %v\n%v\n", err, j)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top