Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for somme (0.06 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode ISTIO_MUTUAL and H2",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    			h2: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    	}
    }
    
    var virtualServiceWithSubset = &networking.VirtualService{
    	Hosts:    []string{},
    	Gateways: []string{"some-gateway"},
    	Http: []*networking.HTTPRoute{
    		{
    			Route: []*networking.HTTPRouteDestination{
    				{
    					Destination: &networking.Destination{
    						Subset: "some-subset",
    						Host:   "*.example.org",
    						Port: &networking.PortSelector{
    							Number: 65000,
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	resourceClass = &resourcev1alpha2.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: className,
    		},
    		DriverName: "some-driver",
    	}
    	structuredResourceClass = &resourcev1alpha2.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: className,
    		},
    		DriverName:           "some-driver",
    		StructuredParameters: ptr.To(true),
    	}
    	structuredResourceClassWithParams = &resourcev1alpha2.ResourceClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some key": "some value", "other key": "other value"]
    
            when:
            property.put("some key", Providers.of("some value").withSideEffect(sideEffect1))
            property.put("other key", Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If your tasks hold references to objects with simple state or of supported types you don't have anything to do to support the serialization.
    
    As a fallback and to provide some aid in migrating existing tasks, some semantics of <<configuration_cache#config_cache:not_yet_implemented:java_serialization, Java Serialization>> are supported. But it is not recommended relying on it, mostly for performance reasons.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            collection.from('b')
    
            then:
            collection.files as List == [file1, file2]
    
            when:
            collection.setFrom('some', 'more')
    
            then:
            thrown IllegalStateException
    
            when:
            collection.setFrom(['some', 'more'])
    
            then:
            thrown IllegalStateException
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    doLast {
                        file('build/out.txt').text = 'some content'
                    }
                }
                task dirProducer {
                    outputs.dir 'build/outdir'
                    doLast {
                        file('build/outdir').mkdirs()
                        file('build/outdir/file1.txt').text = 'some content'
                        file('build/outdir/sub').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				mg, err := rs.Graph(ctx)
    				if err != nil {
    					// The module graph is (or may be) incomplete — perhaps we failed to
    					// load the requirements of some module. This is an error in matching
    					// the patterns to packages, because we may be missing some packages
    					// or we may erroneously match packages in the wrong versions of
    					// modules. However, for cases like 'go list -e', the error should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some value", "simple value", "other value"]
    
            when:
            property.add(Providers.of("some value").withSideEffect(sideEffect1))
            property.add(Providers.of("simple value"))
            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    			}
    		})
    	}
    	<-r.work.Idle()
    }
    
    // queryWildcard adds a candidate set to q for each module for which:
    //   - some version of the module is already in the build list, and
    //   - that module exists at some version matching q.version, and
    //   - either the module path itself matches q.pattern, or some package within
    //     the module at q.version matches q.pattern.
    func (r *resolver) queryWildcard(ctx context.Context, q *query) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top