Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 720 for typed (0.24 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorCompositeBuildIntegrationTest.groovy

            expect:
            succeeds("runWork")
    
            and:
            file("build/workOutput").text == "foo"
            lib.file("build/workOutput").text == "foo"
    
            where:
            pluginId << [ 'typed-worker-plugin' ]
        }
    
        private void withTypedWorkerPluginInPluginBuild() {
            plugin.file("src/main/java/TypedParameter.java") << """
                import org.gradle.workers.WorkParameters;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			// proto merge doesn't work well when merging two filters with ANY typed configs
    			// especially when the incoming cp.Value is a struct that could contain the json config
    			// of an ANY typed filter. So convert our filter's typed config to Struct (retaining the any
    			// typed output of json)
    			if filter.GetTypedConfig() == nil {
    				// TODO(rshriram): fixme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.sisu.Typed;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.extension.ExtendWith;
    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/versionconverter_test.go

    		t.Fatalf("error creating converting input object to a typed value: %v", err)
    	}
    	expected := objForGroupVersion("apps/v1")
    	output, err := vc.Convert(input, fieldpath.APIVersion("apps/v1"))
    	if err != nil {
    		t.Fatalf("expected err to be nil but got %v", err)
    	}
    	actual, err := testTypeConverter.TypedToObject(output)
    	if err != nil {
    		t.Fatalf("error converting output typed value to an object %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. releasenotes/notes/no_extension_lookup_by_name.yaml

    upgradeNotes:
      - title: EnvoyFilter must specify the type URL for an Envoy extension injection.
        content: |
          Previously, Istio permitted a lookup of the extension in `EnvoyFilter` by its internal Envoy name alone. To see if you are affected,
          run `istioctl analyze` and check for a deprecation warning `using deprecated types by name without typed_config`. Additionally, make
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 21:20:37 UTC 2023
    - 712 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    	buf.WriteString(fmt.Sprintf("flowcontrolv1.PriorityLevelConfigurationSpec{Type: %#v", plSpec.Type))
    	if plSpec.Limited != nil {
    		buf.WriteString(fmt.Sprintf(", Limited: &flowcontrol.LimitedPriorityLevelConfiguration{NominalConcurrencyShares:%d, LimitResponse:flowcontrol.LimitResponse{Type:%#v", plSpec.Limited.NominalConcurrencyShares, plSpec.Limited.LimitResponse.Type))
    		if plSpec.Limited.LimitResponse.Queuing != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/doc.go

    //
    // The unsafeptr analyzer reports likely incorrect uses of unsafe.Pointer
    // to convert integers to pointers. A conversion from uintptr to
    // unsafe.Pointer is invalid if it implies that there is a uintptr-typed
    // word in memory that holds a pointer value, because that word will be
    // invisible to stack copying and to the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 738 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    limitations under the License.
    */
    
    // Package generic contains a typed wrapper over cache SharedIndexInformer
    // and Lister (maybe eventually should have a home there?)
    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    // Informer/Lister classes are thin wrappers providing a type-safe interface
    // over regular interface{}-based Informers/Listers
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/clientset.go

    	"net/http"
    
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
    	apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
    	discovery "k8s.io/client-go/discovery"
    	rest "k8s.io/client-go/rest"
    	flowcontrol "k8s.io/client-go/util/flowcontrol"
    )
    
    type Interface interface {
    	Discovery() discovery.DiscoveryInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. test/makechan.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Ensure that typed non-integer, negative and too large
    // values are not accepted as size argument in make for
    // channels.
    
    package main
    
    type T chan byte
    
    var sink T
    
    func main() {
    	sink = make(T, -1)            // ERROR "negative buffer argument in make.*|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top