Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 508 for someString (0.19 sec)

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

    //
    // Look for variables and blocks that satisfy the following
    //
    //	 loop:
    //	   ind = (Phi min nxt),
    //	   if ind < max
    //	     then goto enter_loop
    //	     else goto exit_loop
    //
    //	   enter_loop:
    //		do something
    //	      nxt = inc + ind
    //		goto loop
    //
    //	 exit_loop:
    func findIndVar(f *Func) []indVar {
    	var iv []indVar
    	sdom := f.Sdom()
    
    	for _, b := range f.Blocks {
    		if b.Kind != BlockIf || len(b.Preds) != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K 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. pkg/registry/flowcontrol/ensurer/strategy.go

    		if !apierrors.IsAlreadyExists(err) {
    			return fmt.Errorf("cannot create %s type=%s name=%q error=%w", bootstrap.GetObjectKind().GroupVersionKind().Kind, configurationType, name, err)
    		}
    		klog.V(5).InfoS(fmt.Sprintf("Something created the %s concurrently", bootstrap.GetObjectKind().GroupVersionKind().Kind), "type", configurationType, "name", name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top