Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 141 for wieder (0.14 sec)

  1. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    # Klassen als Abhängigkeiten
    
    Bevor wir tiefer in das **Dependency Injection** System eintauchen, lassen Sie uns das vorherige Beispiel verbessern.
    
    ## Ein `dict` aus dem vorherigen Beispiel
    
    Im vorherigen Beispiel haben wir ein `dict` von unserer Abhängigkeit („Dependable“) zurückgegeben:
    
    === "Python 3.10+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/dependencies/tutorial001_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/policy_test.go

    							},
    						},
    					},
    				},
    			},
    			expected: TopologyHint{
    				NUMANodeAffinity: NewTestBitMask(1),
    				Preferred:        false,
    			},
    		},
    		{
    			name: "Two providers, 1 hint each, 1 wider mask, both preferred 1/2",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource1": {
    							{
    								NUMANodeAffinity: NewTestBitMask(0),
    								Preferred:        true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util_test.go

    						SecretRef: &v1.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.CephFS.SecretRef"}}}}, {
    				VolumeSource: v1.VolumeSource{
    					Cinder: &v1.CinderVolumeSource{
    						SecretRef: &v1.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.Cinder.SecretRef"}}}}, {
    				VolumeSource: v1.VolumeSource{
    					FlexVolume: &v1.FlexVolumeSource{
    						SecretRef: &v1.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/query-params-str-validations.md

        Der Teil mit `Union[str, None]` erlaubt es Ihrem Editor, Sie besser zu unterstützen, aber er sagt FastAPI nicht, dass dieser Parameter optional ist.
    
    Jetzt können wir `Query` weitere Parameter übergeben. Fangen wir mit dem `max_length` Parameter an, der auf Strings angewendet wird:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:59 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

                    container.addComponent(mock(Maven.class), "org.apache.maven.Maven");
    
                    ((DefaultPlexusContainer) container)
                            .addPlexusInjector(Collections.emptyList(), binder -> binder.bind(EventSpyDispatcher.class)
                                    .toInstance(eventSpyDispatcherMock));
                }
            };
    
            CliRequest cliRequest = new CliRequest(new String[] {}, null);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func convTnoptr(typ *byte, elem *any) unsafe.Pointer
    
    // Specialized versions of convT for specific types.
    // These functions take concrete types in the runtime. But they may
    // be used for a wider range of types, which have the same memory
    // layout as the parameter type. The compiler converts the
    // to-be-converted type to the parameter type before calling the
    // runtime function. This way, the call is ABI-insensitive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar.go

    	}
    
    	// We have a value x of 512 bits, but our fiatScalarFromBytes function
    	// expects an input lower than l, which is a little over 252 bits.
    	//
    	// Instead of writing a reduction function that operates on wider inputs, we
    	// can interpret x as the sum of three shorter values a, b, and c.
    	//
    	//    x = a + b * 2^168 + c * 2^336  mod l
    	//
    	// We then precompute 2^168 and 2^336 modulo l, and perform the reduction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/strconv/eisel_lemire.go

    	const float64ExponentBias = 1023
    	retExp2 := uint64(217706*exp10>>16+64+float64ExponentBias) - uint64(clz)
    
    	// Multiplication.
    	xHi, xLo := bits.Mul64(man, detailedPowersOfTen[exp10-detailedPowersOfTenMinExp10][1])
    
    	// Wider Approximation.
    	if xHi&0x1FF == 0x1FF && xLo+man < man {
    		yHi, yLo := bits.Mul64(man, detailedPowersOfTen[exp10-detailedPowersOfTenMinExp10][0])
    		mergedHi, mergedLo := xHi, xLo+yHi
    		if mergedLo < xLo {
    			mergedHi++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/model.go

    		return err
    	}
    
    	// Ignore the error for a deny or audit policy. This will make the current rule ignored and continue the generation of
    	// the next rule, effectively resulting in a wider deny or audit policy (i.e. more likely to deny or audit a request).
    	return nil
    }
    
    func (p *ruleList) copy() ruleList {
    	r := ruleList{}
    	r.rules = append([]*rule{}, p.rules...)
    	return r
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    See the <<publishing_ivy.adoc#publishing_ivy,Ivy>> and <<publishing_maven.adoc#publishing_maven,Maven>> chapters on publishing artifacts.
    
    If you are interested in publishing your plugin to be used by the wider Gradle community, you can publish it to http://plugins.gradle.org[Gradle Plugin Portal].
    This site provides the ability to search for and gather information about plugins contributed by the Gradle community.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top