Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 316 for someString (0.22 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    // Dead stores are those which are unconditionally followed by
    // another store to the same location, with no intervening load.
    // This implementation only works within a basic block. TODO: use something more global.
    func dse(f *Func) {
    	var stores []*Value
    	loadUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(loadUse)
    	storeUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(storeUse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/custom-response.md

    The `response_class` will then be used only to document the OpenAPI *path operation*, but your `Response` will be used as is.
    
    #### Return an `HTMLResponse` directly
    
    For example, it could be something like:
    
    ```Python hl_lines="7  21  23"
    {!../../../docs_src/custom_response/tutorial004.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    Although you use `Depends` in the parameters of your function the same way you use `Body`, `Query`, etc, `Depends` works a bit differently.
    
    You only give `Depends` a single parameter.
    
    This parameter must be something like a function.
    
    You **don't call it** directly (don't add the parenthesis at the end), you just pass it as a parameter to `Depends()`.
    
    And that function takes parameters in the same way that *path operation functions* do.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emit.go

    	copy(finalHash[:], fh)
    	finalHashComputed = true
    	finalMetaLen = tlen
    
    	return ml, nil
    }
    
    // emitMetaDataToDirectory emits the meta-data output file to the specified
    // directory, returning an error if something went wrong.
    func emitMetaDataToDirectory(outdir string, ml []rtcov.CovMetaBlob) error {
    	ml, err := prepareForMetaEmit()
    	if err != nil {
    		return err
    	}
    	if len(ml) == 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

                    String toString() { null }
                }
                model {
                    something(SomeType)
                }
            """.stripIndent()
    
            when:
            succeeds 'model'
    
            then:
            def modelNode = ModelReportOutput.from(output).modelNode
            modelNode.something[0].nodeValue == 'SomeType#toString() returned null'
        }
    
        private String managedNumbers() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            def someTask = ":someTask"
            def someTaskOutput = file("build/overlap/someTask.txt")
            someTaskOutput.text = "Created by something else"
    
            when:
            withBuildCache().run(someTask)
            then:
            // someTask cannot be cached because its outputs were created by something else
            assertTaskOutputNotCached(someTask)
            someTaskOutput.text == "Generated by ${someTask}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/shell.go

    	// Rewrite mentions of dir with a relative path to dir
    	// when the relative path is shorter.
    	for {
    		// Note that dir starts out long, something like
    		// /foo/bar/baz/root/a
    		// The target string to be reduced is something like
    		// (blah-blah-blah) /foo/bar/baz/root/sibling/whatever.go:blah:blah
    		// /foo/bar/baz/root/a doesn't match /foo/bar/baz/root/sibling, but the prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                return Value.of(ImmutableSet.of());
            }
    
            @Override
            public MapSupplier<K, V> plus(MapCollector<K, V> collector) {
                // empty + something = something
                return new CollectingSupplier(collector);
            }
    
            @Override
            public ExecutionTimeValue<? extends Map<K, V>> calculateExecutionTimeValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    		}
    	}
    }
    
    func TestMustGenSpiffeURI(t *testing.T) {
    	mesh := &meshconfig.MeshConfig{TrustDomain: "something.local"}
    	if nonsense := MustGenSpiffeURI(mesh, "", ""); nonsense != "spiffe://something.local/ns//sa/" {
    		t.Errorf("Unexpected spiffe URI for empty namespace and service account: %s", nonsense)
    	}
    }
    
    type handler struct {
    	statusCode int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// If a rollback is needed, these manifests will be put back to where they where initially
    	backupManifestPath := pathMgr.BackupManifestPath(component)
    
    	// Store the backup path in the recover list. If something goes wrong now, this component will be rolled back.
    	recoverManifests[component] = backupManifestPath
    
    	// Skip upgrade if current and new manifests are equal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top