Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for gretty (0.14 sec)

  1. docs/en/docs/advanced/openapi-callbacks.md

    It will have a *path operation* that will receive an `Invoice` body, and a query parameter `callback_url` that will contain the URL for the callback.
    
    This part is pretty normal, most of the code is probably already familiar to you:
    
    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_callbacks/tutorial001.py!}
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

      padding-bottom: 12px;
      text-align: left;
      background-color: black;
      color: white;
    }
    </style>
    <body>
    <br/>
    <p style = "font-family:Arial,Helvetica,sans-serif;">
    Note: Use <b>pretty</b> in query string (like <b>debug/configz?pretty</b>) to format the output.
    </p>
    <table id="endpoints">
    <tr><th>Endpoint</th><th>Description</th></tr>
    {{range .}}
    	<tr>
    	<td><a href='{{.Href}}'>{{.Name}}</a></td><td>{{.Help}}</td>
    	</tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            val actualPretty = data.pointersForPrettyRendering.renderDeclarations()
            testServices.assertions.assertEqualsToTestDataFileSibling(actualPretty, extension = ".pretty.txt")
        }
    
        private fun List<PointerWithRenderedSymbol>.renderDeclarations(): String =
            mapNotNull { it.rendered.takeIf { _ -> it.shouldBeRendered } }.renderAsDeclarations()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	}
    	if path := lockPath(pass.Pkg, typ, nil); path != nil {
    		pass.Reportf(e.Pos(), "range var %s copies lock: %v", analysisutil.Format(pass.Fset, e), path)
    	}
    }
    
    type typePath []string
    
    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top